简体   繁体   中英

how to customize wp_nav_menu() fort icons

how can i add icon wo wp_nav_menus?.. this is the picture that i design

http://postimg.org/image/w7x2hfn75/

I want to make the first menu as an icon, are there possible way?..

my code

<?php 

    $defaults = array(
        'theme_location' => 'header-menu'
        );

    wp_nav_menu( $defaults ); 

?>

and i add the

'before'          => '',

it show the icon for every menus, i want single home icon

icon source http://fortawesome.github.io/Font-Awesome/icons/

Add Font Awesome 4 icons to your WordPress menus and site without touching a single line of code!

Install this wordpress plugin after active follow screenshort: Font Awesome 4 Menus

在此处输入图片说明

在此处输入图片说明

If you are using font awesome, you can simply add something like below on the navigation Item label when you create a menu,

<i class="fa fa-home"></i>

You can also add something in wordpress HTML menu structure using CSS or Jquery,

No need to use PHP for a very simple thing like that

您可以从该设计创建网站,然后在该网站上发布指向该网站的链接,以便我为您提供替换第一个菜单项以添加图标的代码。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM