woocommerce_after_widget_product_list

woocommerce_after_widget_product_list

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_after_widget_product_list') is found 3 times:

  • /includes/widgets/class-wc-widget-products.php line 213
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
            $products->the_post();
            wc_get_template( 'content-widget-product.php', $template_args );
        }
     
        echo wp_kses_post( apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ) );
     
        $this->widget_end( $args );
    }
     
    wp_reset_postdata();
  • /includes/widgets/class-wc-widget-recently-viewed.php line 101
    097
    098
    099
    100
    101
    102
    103
    104
    105
    106
            $r->the_post();
            wc_get_template( 'content-widget-product.php', $template_args );
        }
     
        echo wp_kses_post( apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ) );
     
        $this->widget_end( $args );
    }
     
    wp_reset_postdata();
  • /includes/widgets/class-wc-widget-top-rated-products.php line 94
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
            $r->the_post();
            wc_get_template( 'content-widget-product.php', $template_args );
        }
     
        echo wp_kses_post( apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ) );
     
        $this->widget_end( $args );
    }
     
    wp_reset_postdata();