php WordPress - 从帖子标题中删除私人/保护

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress - 从帖子标题中删除私人/保护相关的知识,希望对你有一定的参考价值。

// ---------------------------------------------
//  Remove Private/Protected from Post Titles
// ---------------------------------------------

// Source: http://css-tricks.com/snippets/wordpress/remove-privateprotected-from-post-titles/

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');

////////////////////////////////////////////////////////

以上是关于php WordPress - 从帖子标题中删除私人/保护的主要内容,如果未能解决你的问题,请参考以下文章

php 从帖子和页面中删除WordPress评论。

如何在没有 single.php 的情况下从 wordpress 帖子中删除特色图片

php 从管理员Wordpress中删除博客(帖子类型)

php 从发布的帖子永久链接 - Wordpress中删除slug

php 从管理员帖子表中删除WordPress SEO列

从 Wordpress 取消注册自定义帖子类型