/ Published in: PHP
Thanks to Jennifer Zelazny
You can see complete post in http://www.sandboxdev.com/blog/wordpress/178/remove-private-from-wordpress-titles/comment-page-2/#comment-16447
Add the following code into functions.php file (within theme directory)
You can see complete post in http://www.sandboxdev.com/blog/wordpress/178/remove-private-from-wordpress-titles/comment-page-2/#comment-16447
Add the following code into functions.php file (within theme directory)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function remove_private_prefix($title) { return $title; } add_filter('the_title','remove_private_prefix');