Content of the article
This hooks allows to print any content before items of the WOOF search-form.
Example:
1 2 3 4 5 6 7 8 9 | add_filter('woof_print_content_before_search_form', function($content) { global $WOOF; if ($WOOF->is_isset_in_request_data($WOOF->get_swoof_search_slug())) { return $content . 'Found results: ' . do_shortcode('[woof_found_count]') . '<br /><br />'; } return ''; }); |
From: v.2.1.6
