Call Hook from the Storefront at templete Woocommerce

0
<?php
            /**
             * Functions hooked in to homepage action
             *
             * @hooked storefront_homepage_content      - 10
             * @hooked storefront_product_categories    - 20
             * @hooked storefront_recent_products       - 30
             * @hooked storefront_featured_products     - 40
             * @hooked storefront_popular_products      - 50
             * @hooked storefront_on_sale_products      - 60
             * @hooked storefront_best_selling_products - 70
             */
            do_action( 'homepage' ); ?>

I want to call only the hook storefront_recent_products , do you have any way to do that?

For example: do_action('storefront_recent_products');

    
asked by anonymous 04.07.2018 / 21:29

0 answers