bp_change_forum_slug_quickedit_save_page( $post_id,  $post )

Set the forum slug on edit page from backend.

Description

Parameters

$post_id

(Required)

$post

(Required)

Source

File: bp-core/admin/bp-core-admin-functions.php

2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
function bp_change_forum_slug_quickedit_save_page( $post_id, $post ) {
 
    // if called by autosave, then bail here
    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
        return;
 
    // if this "post" post type?
    if ( $post->post_type != 'page' )
        return;
 
    // does this user have permissions?
    if ( ! current_user_can( 'edit_post', $post_id ) )
        return;
 
    // update!
    $forum_page_id = (int) bp_get_option('_bbp_root_slug_custom_slug');
 
    if ( $forum_page_id > 0  && $forum_page_id === $post_id ) {
        $slug = get_post_field( 'post_name', $post_id );
        if ( '' !== $slug ) {
            bp_update_option( '_bbp_root_slug', $slug );
            bp_update_option( 'rewrite_rules', '' );
        }
    }
}

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.