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

php - Add data attribute to each li in menu

programmeradmin0浏览0评论

I have a menu listing all of my products categories in Woocommerce. I need to add an attribute data-relation to each <li> tag and the value for each one would be the ID of the category.

I success to do it for the <a> tag. Does it exist a filter for <li>?

Here is the PHP filter function:

function category_menu_id_attribute ($atts, $item, $args) {
  $atts['data-relation'] = $item->object_id;
  return $atts;
  }
add_filter('nav_menu_link_attributes', 'category_menu_id_attribute', 10, 3);

Thank you for the help.

发布评论

评论列表(0)

  1. 暂无评论