Skip to content

Instantly share code, notes, and snippets.

@bordoni
Last active December 19, 2015 03:48
Show Gist options
  • Select an option

  • Save bordoni/5892472 to your computer and use it in GitHub Desktop.

Select an option

Save bordoni/5892472 to your computer and use it in GitHub Desktop.
<?php
function _filtering_the_title ($title, $id) {
return wp_kses($title, wp_kses_allowed_html());
}
add_filter('the_title', '_filtering_the_title', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment