2026年7月3日 星期五
快讯 微信小程序缓存容量分析
RSS

防止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/

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注