woocommerce_is_cart

woocommerce_is_cart

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('woocommerce_is_cart') is found 1 times:

  • /includes/wc-conditional-functions.php line 103
    099
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
             *
             * @since 2.4.0
             * @param bool $is_cart Whether the cart page is being viewed.
             */
            return apply_filters( 'woocommerce_is_cart', false ) || Constants::is_defined( 'WOOCOMMERCE_CART' ) || CartCheckoutUtils::is_cart_page();
        }
    }
     
    if ( ! function_exists( 'is_checkout' ) ) {
     
        /**