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 - 从帖子标题中删除私人/保护的主要内容,如果未能解决你的问题,请参考以下文章