而不是移除整个wptexturize
过滤器,我认为解决这个问题的更好方法是wptexturize()
运行并用三个点撤消替换的省略号图示符。
过滤器以11的优先级运行,以便在wptexturize()
.
function wpse_45245_the_content( $content )
{
return str_replace( \'…\', \'...\', $content );
}
add_filter( \'the_content\', \'wpse_45245_the_content\', 11 );
请注意,这仅在中替换它
the_content
过滤器,如果要在中更换
the_excerpt
,
the_title
, 等等,然后您还需要添加这些过滤器。