我正在使用Buddypress 1.8.1
我需要在群组主页下添加子菜单。当我单击主菜单时,主菜单下应该有2个子菜单。
我已经创建了子页面。但我无法在主菜单下添加子菜单。
这样的事,
答案 0 :(得分:0)
我认为bp_core_new_subnav_item()
可能是您正在寻找的功能。你可以使用这样的东西:
$args = array(
'name' => 'Snazzy Subnav', // Display name for the nav item
'slug' => 'snazzy', // URL slug for the nav item
'parent_slug' => 'home', // URL slug of the parent nav item
'parent_url' => false, // URL of the parent item
'item_css_id' => 'snazzy-id', // The CSS ID to apply to the HTML of the nav item
'user_has_access' => true, // Can the logged in user see this nav item?
'site_admin_only' => false, // Can only site admins see this nav item?
'position' => 90, // Index of where this nav item should be positioned
'screen_function' => false // The name of the function to run when clicked
);
bp_core_new_subnav_item( $args )