Skip to content

Instantly share code, notes, and snippets.

@boostersinabox
boostersinabox / pdb-allow-html-text.php
Created August 6, 2019 14:24 — forked from xnau/pdb-allow-html-text.php
Demonstrates how to allow HTML in Participants Database text fields
<?php
/**
* @wordpress-plugin
* Plugin Name: PDB Allow HTML
* Description: Installs a filter allowing HTML in Participants Database text fields
*/
add_filter( 'pdb-text_field_output', 'xnau_allow_html_in_text', 10, 2 );
/**
* allows sanitized HTML in text fields
*