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)
Куда можно поместить этот код? –
В функции functions.php вашей темы, но обратите внимание, что код является примером, вам нужно будет изменить значения. – henrywright