批量替换WordPress帖子中的文本
假如你经常在WordPress博客文章中添加一些关键短语,但是后面你打算将这些关键短语替换为其他内容,手动替换会很麻烦而且工作量大。 以下代码段可以帮助你非常方便地替换这些关键字。
批量替换WordPress帖子中的文本
将以下代码添加到主题的functions.php文件中:
1 2 3 4 5 6 7 8 9 10 11 12 13 | function replace_text_wps($text){ $replace = array( // '关键词' => '替换的关键词' 'WordPress' => '<a href="https://www.febdays.com/tag/wordpress">wordpress</a>', 'Excel' => '<a href="https://www.febdays.com/tag/excel">excel</a>', 'Word' => '<a href="https://www.febdays.com/tag/word">word</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps'); add_filter('the_excerpt', 'replace_text_wps'); |