请注意if ( is_page()
线这表明该代码段仅适用于页面,而不适用于帖子。如果要在站点范围内应用它,请将其从if条件中拉出。
function wpdocs_replace_content( $text_content ) {
$text = array(
\'chamber\' => \'<strong>chamber</strong>\',
);
$text_content = str_ireplace( array_keys( $text ), $text, $text_content );
return $text_content;
}
add_filter( \'the_content\', \'wpdocs_replace_content\' );