woocommerce_before_output_product_categories

woocommerce_before_output_product_categories

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_before_output_product_categories') is found 1 times:

  • /includes/wc-template-functions.php line 2826
    2822
    2823
    2824
    2825
    2826
    2827
    2828
    2829
    2830
    2831
    2832
    function woocommerce_output_product_categories( $args = array() ) {
        $args = wp_parse_args(
            $args,
            array(
                'before'    => apply_filters( 'woocommerce_before_output_product_categories', '' ),
                'after'     => apply_filters( 'woocommerce_after_output_product_categories', '' ),
                'parent_id' => 0,
            )
        );
     
        $product_categories = woocommerce_get_product_subcategories( $args['parent_id'] );