bp_discussions_admin_discussions_listing_add_tab()
Add Navigation tab on top of the page BuddyBoss > Forums > Discussions Templates
Description
Source
File: bp-forums/admin.php
287 288 289 290 291 292 293 294 295 296 297 298 | function bp_discussions_admin_discussions_listing_add_tab() { global $pagenow , $current_screen ; if ( ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bbp_get_topic_post_type() && $pagenow == 'edit.php' ) || ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bbp_get_topic_post_type() && $pagenow == 'post-new.php' ) || ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bbp_get_topic_post_type() && $pagenow == 'post.php' ) ) { ?> <div class = "wrap" > <h2 class = "nav-tab-wrapper" ><?php bp_core_admin_forums_tabs( __( 'Discussions' , 'buddyboss' ) ); ?></h2> </div> <?php } } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.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.