方法:网站后台->外观->编辑->找到functions.php文件
wp-content/themes/当前外观/functions.php
在当前外观的functions.php末尾中添加以下代码:
/* *文章关键词指定链接 */ function replace_text_wps($text) { $replace = array( '关键词' => '<a href="http://关键词链接" target="_blank" title="关键词">关键词</a>', '关键词' => '<a href="http://关键词链接" target="_blank" title="关键词">关键词</a>', '关键词' => '<a href="http://关键词链接" target="_blank" title="关键词x">关键词</a>', ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps');
关键词和链接根据你自己的网站随便添加,多少不限,非常灵活。
标签:functions,text,关键词,replace,Wordpress,php,链接 From: https://www.cnblogs.com/shenjingwa/p/17071503.html