WP是否有插件可以为 文章页出现的关键词自动添加锚文本
请教,WP是否有插件可以为 文章页出现的关键词自动添加锚文本(超链接) 肯定有的 试着百度一下 比从这里问强 找找就有 有没有的话花钱分分钟有人给制作出来wp的插件市场比其他cms可以强大多了 肯定有的 问AI,就能给写,需要自己多试试 有的,以前用过,英文的插件,忘记名字了 zblog 有吗 无插件版本,将以下代码添加到当前主题的functions.php文件中保存
/* 文章指定关键词添加内链开始 */ function replace_text_wps($text){ $replace = array( '百科' => '<atarget="_blank" title="AI百科">百科</a>', '养生' => '<atarget="_blank" title="养生">养生</a>', '红茶' => '<atarget="_blank" title="红茶">红茶</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps');
页:
[1]