There is a good plugin for creating and displaying coupons database. It's called WP Coupons and Deals. But it has one problem - a lack of good search within coupons.
Fortunately, with WPFTS plugin flexibility it's pretty simple to add this functionality with just some lines of code!
Look here: actually, all we need is to put coupon description (stored in the custom post meta) to the Search Index, and additionally, we need to add coupon custom post type to the list of searchable post types.
And here is the ready code!
add_filter('wpfts_index_post', function($index, $post)
{
if ($post && $post->post_type == 'wpcd_coupons') {
$meta = get_post_meta($post->ID, 'coupon_details_description', true);
$index['post_content'] .= $meta;
}
});
add_action('pre_get_posts', function(&$wpq)
{
if ($wpq->is_main_query() && $wpq->is_search) {
$wpq->set('post_type', array('wpcd_coupons', 'post', 'page'));
}
});
It was simple, do you agree?
Oh, and one more good thing: you don't need WPFTS Pro to get this code working!