woocommerce_is_account_page

woocommerce_is_account_page

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_is_account_page') is found 1 times:

  • /includes/wc-conditional-functions.php line 182
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
         */
        function is_account_page() {
            $page_id = wc_get_page_id( 'myaccount' );
     
            return ( $page_id && is_page( $page_id ) ) || wc_post_content_has_shortcode( 'woocommerce_my_account' ) || apply_filters( 'woocommerce_is_account_page', false );
        }
    }
     
    if ( ! function_exists( 'is_view_order_page' ) ) {
     
        /**