Skip to content

Instantly share code, notes, and snippets.

@jaredatch
Created September 26, 2011 21:45
Show Gist options
  • Save jaredatch/1243500 to your computer and use it in GitHub Desktop.
Save jaredatch/1243500 to your computer and use it in GitHub Desktop.
Enable search for bbPress 2
<?php
// Add Forums, Topics and Replies to search results
function my_add_bbp_to_search( $post_type ) {
$post_type['exclude_from_search'] = false;
return $post_type;
}
add_filter( 'bbp_register_forum_post_type', 'my_add_bbp_to_search' );
add_filter( 'bbp_register_topic_post_type', 'my_add_bbp_to_search' );
add_filter( 'bbp_register_reply_post_type', 'my_add_bbp_to_search' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment