WordPress 快速替换文章/评论的某些文字内容

饮食贵在节,读书贵在精,锻炼贵在恒,节饮食养胃,多读书养胆,喜运动延生!人生需要有目标,有追求,然有所以。

如果你想替换某些文章或评论中的文字,比如敏感词和过期内容,或者给某些关键字添加链接,比如推广链接等,那么你将下面的代码添加到主题的 functions.php 即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * WordPress 快速替换文章/评论的某些文字内容
 * https://www.wpdaxue.com/replace-text-of-content-or-comment.html
 */
function wpdaxue_replace_text($text){
	$replace = array(
		// '原始文字' => '替换为这些'
		'WP大学' => 'WordPress大学',
		'阿里云' => '<a rel="nofollow noopener noreferrer" href="https://www.wpdaxue.com/go/aliyun">阿里云</a>',
		'倡萌' => '<a rel="nofollow noopener noreferrer" href="http://www.cmhello.com/">倡萌</a>'
		);
	$text = str_replace(array_keys($replace), $replace, $text);
	return $text;
}
add_filter('the_content', 'wpdaxue_replace_text'); //正文
add_filter('the_excerpt', 'wpdaxue_replace_text'); //摘要
add_filter('comment_text', 'wpdaxue_replace_text'); //评论

/** * WordPress 快速替换文章/评论的某些文字内容 * https://www.wpdaxue.com/replace-text-of-content-or-comment.html */ function wpdaxue_replace_text($text){ $replace = array( // '原始文字' => '替换为这些' 'WP大学' => 'WordPress大学', '阿里云' => '<a rel="nofollow noopener noreferrer" href="https://www.wpdaxue.com/go/aliyun">阿里云</a>', '倡萌' => '<a rel="nofollow noopener noreferrer" href="http://www.cmhello.com/">倡萌</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'wpdaxue_replace_text'); //正文 add_filter('the_excerpt', 'wpdaxue_replace_text'); //摘要 add_filter('comment_text', 'wpdaxue_replace_text'); //评论

请根据自己的实际需求,修改要替换的内容,以及要应用的钩子。

如果你要永久替换某些文字,建议你试试 WordPress批量搜索和替换插件:Search & Replace

以上就是WordPress 快速替换文章/评论的某些文字内容。为什么不去考呢?又不是考不上。更多关于WordPress 快速替换文章/评论的某些文字内容请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?

WordPress安装在主机空间的什么目录里面?根目录在哪里?