skip to Main Content

WordPress Code Snippets


How to Change the bbPress Forum Structure with Custom Permalinks

To customize the URL structure for bbPress forums, use this code:

function custom_bbpress_forum_permalink( $permalink, $post_id ) {
    if ( 'forum' == get_post_type( $post_id ) ) {
        return home_url( '/forums/' . get_post_field( 'post_name', $post_id ) );
    }
    return $permalink;
}
add_filter( 'post_type_link', 'custom_bbpress_forum_permalink', 10, 2 );

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top