bp_replies_admin_replies_listing_add_tab()

Add Navigation tab on top of the page BuddyBoss > Forums > Replies Templates

Description

Source

File: bp-forums/admin.php

306
307
308
309
310
311
312
313
314
315
316
317
function bp_replies_admin_replies_listing_add_tab() {
    global $pagenow, $current_screen;
 
    if ( ( isset( $current_screen->post_type ) && $current_screen->post_type == bbp_get_reply_post_type() && $pagenow == 'edit.php' ) || ( isset( $current_screen->post_type ) && $current_screen->post_type == bbp_get_reply_post_type() && $pagenow == 'post-new.php' ) || ( isset( $current_screen->post_type ) && $current_screen->post_type == bbp_get_reply_post_type() && $pagenow == 'post.php' ) ) {
        ?>
        <div class="wrap">
            <h2 class="nav-tab-wrapper"><?php bp_core_admin_forums_tabs( __( 'Replies', 'buddyboss' ) ); ?></h2>
        </div>
        <?php
    }
 
}

Changelog

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.