Skip to content

Instantly share code, notes, and snippets.

@jsit
Created April 17, 2017 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsit/8ff5859a3b538a3e8a851362bf17d91e to your computer and use it in GitHub Desktop.
Save jsit/8ff5859a3b538a3e8a851362bf17d91e to your computer and use it in GitHub Desktop.
Allow CodePen attributes in <p> tags
<?php
function add_allowed_tags($tags, $context) {
if ($context === 'post') {
$tags['p'] = array(
'data-height' => true,
'data-theme-id' => true,
'data-slug-hash' => true,
'data-default-tab' => true,
'data-user' => true,
'data-embed-version' => true,
'data-pen-title' => true,
);
return $tags;
}
}
add_filter('wp_kses_allowed_html', 'add_allowed_tags');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment