如何仅使用首页条件在所有菜单href(例如<a href="#about">About</a>)上添加#?

时间:2019-05-11 10:18:21

标签: wordpress wp-nav-menu-item

function your_custom_menu_item ( $items, $args ) {
    if (is_page_template('your-template.php') && $item->title == "Home") {
        $items .= '<a href="# ">  </a>';
    }
    return $items;
}
add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );

0 个答案:

没有答案