bbPress – unset
-
May we know what is a reason you decided to remove support for bbPress ?
function cpac_posttypes_remove_bbpress( $post_types ) { if ( class_exists( 'bbPress' ) ) { unset( $post_types['topic'] ); unset( $post_types['reply'] ); unset( $post_types['forum'] ); } return $post_types; } add_filter( 'cac/post_types', 'cpac_posttypes_remove_bbpress' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘bbPress – unset’ is closed to new replies.