有时候你需要把一篇文章设成密码保护状态, 在WordPress里这是件很容易的事,你只要在“发布”按钮上方对文章的“公开度”下选择“密码保护”或者“私人的”就可以了。 但是在默认情况下,当你输入某篇文章的密码前后,WordPress都会显示“这是一篇受保护的文章”字样。 有没有办法隐藏文章标题上的“受保护”或者“私人”标记呢?
WordPress官方论坛上的这段代码或许可以帮你解决这个问题:
function the_title_trim($title) {
$title = attribute_escape($title);
$findthese = array(
'#Protected:#',
'#Private:#'
);$replacewith = array(
'', // What to replace "Protected:" with
'' // What to replace "Private:" with
);$title = preg_replace($findthese, $replacewith, $title);
return $title;
}
add_filter('the_title', 'the_title_trim');
一些插件也能达到同样的效果,不过我想还是直接把代码贴到functions.php更快更方便。
来源:Remove Private/Protected from Post Titles
分类:新闻资讯