Last active
December 19, 2015 03:48
-
-
Save bordoni/5892472 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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