woocommerce_template_loader_files

woocommerce_template_loader_files

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_template_loader_files') is found 1 times:

  • /includes/class-wc-template-loader.php line 225
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    * @param  string $default_file The default file name.
     * @return string[]
     */
    private static function get_template_loader_files( $default_file ) {
        $templates   = apply_filters( 'woocommerce_template_loader_files', array(), $default_file );
        $templates[] = 'woocommerce.php';
     
        if ( is_page_template() ) {
            $page_template = get_page_template_slug();
     
            if ( $page_template ) {