从Wordpress标题中删除';Private:';后缀
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Wordpress标题中删除';Private:';后缀相关的知识,希望对你有一定的参考价值。
Thanks to Jennifer ZelaznyYou 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)
function remove_private_prefix($title) { return $title; } add_filter('the_title','remove_private_prefix');
以上是关于从Wordpress标题中删除';Private:';后缀的主要内容,如果未能解决你的问题,请参考以下文章