{$shortcode}_shortcode_tag

{$shortcode}_shortcode_tag

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('{$shortcode}_shortcode_tag') is found 1 times:

  • /includes/class-wc-shortcodes.php line 46
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
            'woocommerce_my_account'     => __CLASS__ . '::my_account',
        );
     
        foreach ( $shortcodes as $shortcode => $function ) {
            add_shortcode( apply_filters( "{$shortcode}_shortcode_tag", $shortcode ), $function );
        }
     
        // Alias for pre 2.1 compatibility.
        add_shortcode( 'woocommerce_messages', __CLASS__ . '::shop_messages' );
    }