有时我们需要用其他文本替换文章的一些文本,比如添加特定文本的链接,使用SEO和用户体验。
以下代码可以实现此功能:
/** *WordPress 替换文章的某些文字 *http://www.adminbuy.cn/ */ function Bing_content_str_replace($text){ $replace_words = array( //添加要替换的文本,格式:'要替换的' => '替换到的内容' 'adminbuy' => 'abnma.com', '百度' => '搬码源码网', 'functions.php' => 'functions.php' ); return str_replace( array_keys( $replace_words ), $replace_words, $text ); } add_filter( 'the_content', 'Bing_content_str_replace' ); add_filter( 'the_excerpt', 'Bing_content_str_replace' );
请先
!