Yet another search function thread
-
Hi all,
Stop me when you’ve heard this before: I need a search function. Is this still planned for a 2.3 release? Is there an ETA? No rush, necessarily. I’m using the following as a bandaid:
`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’ );
`Wondering if there’s a way to identify and block hidden posts from showing (we have a mod forum) — or maybe I’ll just have to wait until the next release. Just curious if there’s any thoughts on it …
Thanks ~
- You must be logged in to reply to this topic.