Php Wordpress-主菜单导航的图像href不工作

Php Wordpress-主菜单导航的图像href不工作,php,html,css,wordpress,Php,Html,Css,Wordpress,我有一个图像链接到wordpress的导航栏中的li元素 一切正常,但当我将鼠标悬停在图像上时,它也会在列表中显示一个菜单元素悬停 当它链接到图像时,我如何隐藏它 这是php代码(来自nav menu template.php): if($args->theme\u location=='primary') 返回“”$items; 我附加一个图像以显示它正在执行的操作: 提前谢谢我自己做的,很简单。我在href上添加了一些文本,因此它按照导航栏菜单排列。之后,我将a href的位置放在相对位

我有一个
图像链接到wordpress的
导航栏中的li元素

一切正常,但当我将鼠标悬停在图像上时,它也会在列表中显示一个菜单元素悬停

当它链接到图像时,我如何隐藏它

这是php代码(来自nav menu template.php):

if($args->theme\u location=='primary')
返回“
  • ”$items;
    我附加一个图像以显示它正在执行的操作:


    提前谢谢

    我自己做的,很简单。我在href上添加了一些文本,因此它按照导航栏菜单排列。之后,我将a href的位置放在相对位置,并将其向左浮动,这样我就可以将图像放在绝对位置的顶部

    代码如下:

    $args->theme_location == 'primary' )
        return "<li id='custom-menu-item' class='logo-menu-item'><a style='position:relative;left:-68px' class='logo' href='http://razvanwork.esy.es/exelo'>a<img style='position:absolute;top:-22px;left:-81px;z-index:200;max-width: 402%;' src='http://razvanwork.esy.es/exelo/wp-content/uploads/2014/02/LogoPrelucrat.png' alt='Exelo' ></a></li>".$items;
    
    $args->theme\u location==“primary”)
    返回“
  • ”$items;
    $args->theme_location == 'primary' )
        return "<li id='custom-menu-item' class='logo-menu-item'><a style='position:relative;left:-68px' class='logo' href='http://razvanwork.esy.es/exelo'>a<img style='position:absolute;top:-22px;left:-81px;z-index:200;max-width: 402%;' src='http://razvanwork.esy.es/exelo/wp-content/uploads/2014/02/LogoPrelucrat.png' alt='Exelo' ></a></li>".$items;