我将包括我的页面上传header.php
到wordpress,并且我的标题 
与#text一起在其中自动生成。
我尝试添加此代码,但没有任何反应。
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
有什么解决方案吗?
编辑:
这是“ ”出现的地方:
https ://imgur.com/a/PT9GWDi
我将包括我的页面上传header.php
到wordpress,并且我的标题 
与#text一起在其中自动生成。
我尝试添加此代码,但没有任何反应。
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
有什么解决方案吗?
编辑:
这是“ ”出现的地方:
https ://imgur.com/a/PT9GWDi
因此,您的主题正在 
“导航菜单项”中输出。所以尝试使用下面的代码,看看它是否删除了那些多余的空格!
add_filter( 'wp_nav_menu_objects', 'rempving_extra_spaces_from_nav_menu_items', 999);
function rempving_extra_spaces_from_nav_menu_items($items)
{
$items = str_replace(' ', '', $items);
return $items;
}
代码进入您functions.php
的主题文件。