防止WordPress标题中的横线“-”被转义成“& #8211;”的问题

/**
* 防止Wordpress标题中的横线“-”被转义成“& #8211;”的问题
*/
remove_filter('the_title','wptexturize');
remove_filter('wp_title','wptexturize');
remove_filter('single_post_title','wptexturize');
add_filter( 'run_wptexturize', '__return_false' );

参考:https://www.3haow.com/remove_filter-wp_title-wptexturize/

未经允许不得转载:Song It » 防止WordPress标题中的横线“-”被转义成“& #8211;”的问题

相关文章

评论 (0)