如果你将文章的公开度设置为 私密 或 密码保护,这些文章就会在标题的前面自动添加“私密:”或“密码保护:”。
如果你希望移除或者修改这些字样,可以将下面的代码添加到主题的 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';
}
|
/** * 移除/修改标题前的“私密”和“密码保护” * 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’; }
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:
IDC资讯中心 »
WordPress 移除/修改标题前的“私密”和“密码保护”