且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

WordPress:将空白列表项添加到导航菜单

更新时间:2023-12-01 22:10:52

我要添加一个过滤器:

add_filter('wp_nav_menu_items', 'add_stretcher', 10, 2);
function add_stretcher($items, $args) {
  if ($args->theme_location == 'primary') {
    $items .= '<li class="stretcher"></li>';
  }
  return $items;
}