Last active
August 29, 2015 14:12
-
-
Save lukaspawlik/6e0650152b79b5e30fdf 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
/** | |
* Timely Network Inc. | |
* Author: Lukas Pawlik | |
* | |
* Put below code into WordPress theme functions.php file. | |
* You can find this file in wp-content/themes/[your-theme-directory]/functions.php | |
* | |
*/ | |
add_filter( 'the_title', '_remove_microformats', PHP_INT_MAX ); | |
function _remove_microformats( $title ) { | |
return strip_tags( $title ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment