WordPress 移除/修改标题前的“私密”和“密码保护”

如果你将文章的公开度设置为 私密密码保护,这些文章就会在标题的前面自动添加“私密:”或“密码保护:”。

private-protected-wpdaxue_com

如果你希望移除或者修改这些字样,可以将下面的代码添加到主题的 functions.php:

/**
 * 移除/修改标题前的“私密”和“密码保护”
 * 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://www.wpdaxue.com/remove-change-private-protected-title-format.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?