如果你将文章的公开度设置为 私密 或 密码保护,这些文章就会在标题的前面自动添加“私密:”或“密码保护:”。
如果你希望移除或者修改这些字样,可以将下面的代码添加到主题的 functions.php:
1
2
3
4
5
6
7
8
9
10 | /**
* 移除/修改标题前的“私密”和“密码保护”
* https://www.wpdaxue.com/remove-change-private-protected-title-format.html
*/add_filter( 'private_title_format', 'wpdaxue_private_title_format' );add_filter( 'protected_title_format', 'wpdaxue_private_title_format' ); function wpdaxue_private_title_format( $format ) {
return '%s';} |
以上代码直接去除了标题前的“私密:”和“密码保护:”,函数中的 return ‘%s’; 表示直接返回标题,你可以根据自己的需要,分别为 私密 和 密码保护 撰写不同的函数,定义返回的标题格式即可。
本文链接:https://h.finchui.com/wordpress/2421.html 转载需授权!