替换受保护的私人岗位
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换受保护的私人岗位相关的知识,希望对你有一定的参考价值。
WP Functions.
/* REPLACE PROTECTED-PRIVATE POSTS */ function the_title_trim($title) { // Might aswell make use of this function to escape attributes $title = attribute_escape($title); // What to find in the title '#Protected:#', // # is just the delimeter '#Private:#' ); // What to replace it with 'a', // What to replace protected with 'b' // What to replace private with ); // Items replace by array key return $title; } add_filter('the_title', 'the_title_trim');
以上是关于替换受保护的私人岗位的主要内容,如果未能解决你的问题,请参考以下文章
我使用“受保护”而不是“私人”,因为有一天我可能需要扩展我的课程,这很糟糕吗?