1

我将包括我的页面上传header.php到wordpress,并且我的标题&nbsp与#text一起在其中自动生成。

我尝试添加此代码,但没有任何反应。

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

有什么解决方案吗?

编辑:
这是“ ”出现的地方:
https ://imgur.com/a/PT9GWDi

4

1 回答 1

1

因此,您的主题正在&nbsp“导航菜单项”中输出。所以尝试使用下面的代码,看看它是否删除了那些多余的空格!

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的主题文件。

于 2021-09-13T08:17:35.273 回答