bp_nouveau_get_blogs_directory_nav_items()
Get blog directory navigation menu items.
Description
Source
File: bp-templates/bp-nouveau/includes/blogs/functions.php
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | function bp_nouveau_get_blogs_directory_nav_items() { $nav_items = array (); $nav_items [ 'all' ] = array ( 'component' => 'blogs' , 'slug' => 'all' , // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array ( 'selected' ), 'link' => bp_get_root_domain() . '/' . bp_get_blogs_root_slug(), 'text' => __( 'All Sites' , 'buddyboss' ), 'count' => bp_get_total_blog_count(), 'position' => 5, ); if ( is_user_logged_in() ) { $my_blogs_count = bp_get_total_blog_count_for_user( bp_loggedin_user_id() ); // If the user has blogs create a nav item if ( $my_blogs_count ) { $nav_items [ 'personal' ] = array ( 'component' => 'blogs' , 'slug' => 'personal' , // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array (), 'link' => bp_loggedin_user_domain() . bp_get_blogs_slug(), 'text' => __( 'My Sites' , 'buddyboss' ), 'count' => $my_blogs_count , 'position' => 15, ); } // If the user can create blogs, add the create nav if ( bp_blog_signup_enabled() ) { $nav_items [ 'create' ] = array ( 'component' => 'blogs' , 'slug' => 'create' , // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array ( 'no-ajax' , 'site-create' , 'create-button' ), 'link' => trailingslashit( bp_get_blogs_directory_permalink() . 'create' ), 'text' => __( 'Create a Site' , 'buddyboss' ), 'count' => false, 'position' => 999, ); } } // Check for the deprecated hook : $extra_nav_items = bp_nouveau_parse_hooked_dir_nav( 'bp_blogs_directory_blog_types' , 'blogs' , 20 ); if ( ! empty ( $extra_nav_items ) ) { $nav_items = array_merge ( $nav_items , $extra_nav_items ); } /** * Use this filter to introduce your custom nav items for the blogs directory. * * @since BuddyPress 3.0.0 * * @param array $nav_items The list of the blogs directory nav items. */ return apply_filters( 'bp_nouveau_get_blogs_directory_nav_items' , $nav_items ); } |
Changelog
Version | Description |
---|---|
BuddyPress 3.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.