bp_emails_admin_email_listing_add_tab()
Add Navigation tab on top of the page BuddyBoss > Emails
Description
Source
File: bp-core/admin/bp-core-admin-functions.php
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 | function bp_emails_admin_email_listing_add_tab() { global $pagenow , $current_screen ; if ( ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bp_get_email_post_type() && $pagenow == 'edit.php' ) || ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bp_get_email_post_type() && $pagenow == 'post-new.php' ) || ( isset( $current_screen ->post_type ) && $current_screen ->post_type == bp_get_email_post_type() && $pagenow == 'post.php' ) ) { ?> <div class = "wrap" > <h2 class = "nav-tab-wrapper" ><?php bp_core_admin_emails_tabs( __( 'Emails' , '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.