Skip to content

Instantly share code, notes, and snippets.

@delowardev
Last active May 31, 2017 06:06
Show Gist options
  • Save delowardev/d9a3f108a75441518b921b991f20935c to your computer and use it in GitHub Desktop.
Save delowardev/d9a3f108a75441518b921b991f20935c to your computer and use it in GitHub Desktop.
$provision_toolkit_allowed_html_in_st = array(
'a' => array(
'href' => array(),
'class' => array(),
'target' => array(),
),
'img' => array(
'href' => array(),
'class' => array(),
'alt' => array(),
),
'p' => array(),
'br' => array(),
'strong' => array(),
'i' => array(),
);
// call
wp_kses(wpautop($var), $provision_toolkit_allowed_html_in_st)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment