woocommerce_product_loop_end

woocommerce_product_loop_end

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_product_loop_end') is found 1 times:

  • /includes/wc-template-functions.php line 1180
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    ob_start();
     
    wc_get_template( 'loop/loop-end.php' );
     
    $loop_end = apply_filters( 'woocommerce_product_loop_end', ob_get_clean() );
     
    if ( $echo ) {
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $loop_end;
    } else {
        return $loop_end;