将文本添加到标签元素搜索栏Wordpress

时间:2018-07-09 07:52:05

标签: php wordpress

我想显示一个search bar in the Wordpress navigation menu,为此,我在我的functions.php文件中添加了它:

add_filter('wp_nav_menu_items', 'sydney_child_add_serch_from_to_nav', 10, 2);
function sydney_child_add_serch_from_to_nav($items, $args){

  if ($args->theme_location == 'primary') {
      $items .= '<li class="top-search-menu">'.get_search_form(false).'</li>';
  }
  return $items;

}

问题是我的网站must be valid WCAG 2.0 (Level A),但出现以下错误:

enter image description here

我尝试了几种添加标签的解决方案,但没有成功。使用搜索插件时出现相同的错误。

谢谢。

0 个答案:

没有答案