最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

how to add fa fa icons customize menu using wp_nav_menu function?

programmeradmin7浏览0评论

how to add fa fa icons customize menu using wp_nav_menu function?

wp_nav_menu( array(
    'theme_location' => 'primary',
    'menu_id'        => 'footer-menu',
    'menu_class'     => 'quick-link',
));

how to add fa fa icons customize menu using wp_nav_menu function?

wp_nav_menu( array(
    'theme_location' => 'primary',
    'menu_id'        => 'footer-menu',
    'menu_class'     => 'quick-link',
));
Share Improve this question edited Apr 19, 2019 at 16:36 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Apr 19, 2019 at 11:32 SonglyricstSonglyricst 12 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 0

There might be a better way to do this, but I would use jQuery to target the menu items and .addClass(). So, something like:

$( document ).ready(function() {
  $(“.menu-item-one”).addClass(“fa fa-icon”);
); 

There is an option to add your CSS classes to menu.(Here is screenshot)

发布评论

评论列表(0)

  1. 暂无评论