HUSKY - Products Filter Professional for WooCommerce

woof_print_content_before_search_form

このフックは、WOOF検索フォームのアイテムの前に任意のコンテンツを出力することを許可します。

:

 add_filter('woof_print_content_before_search_form', function($content) {
        global $WOOF;
        if ($WOOF AND woof()->is_isset_in_request_data(woof()->get_swoof_search_slug()))
        {
            return $content . 'Found results: ' . do_shortcode('[woof_found_count]') . '<br /><br />';
        }

        return '';
    });

から: v.2.1.6