这实际上发生在我身上。我通常通过字符串替换函数来解决这个问题。第一个取代了WordPressContent 地区第二个过滤器正在更换Title 地区
查看str_replace 阵列并插入œ
在$content 大堆
function replace_the_content_filter( $content ) {
if ( is_single() )
// Add image to the beginning of each page
$content = str_replace(array(\'«\',\'"\', \'“\', \'”\'), \'"\', $content);
// Returns the content.
return $content;
}
add_filter( \'the_content\', \'replace_the_content_filter\', 20 );
function replace_the_title_filter( $content ) {
// Add image to the beginning of each page
$content = str_replace(array(\'«\',\'"\', \'“\', \'”\'), \'"\', $content);
// Returns the content.
return $content;
}
add_filter( \'the_title\', \'replace_the_title_filter\', 20 );
我希望这有帮助。请小心
Title 或内容节。如果您想在附件标题上执行此操作,请检查
https://developer.wordpress.org/reference/hooks/wp_get_attachment_caption/.
祝你好运。