Supporting Custom Post Type Template

Supporting Custom Post Type Template for Single Product.
This commit is contained in:
Emran Ahmed 2017-09-17 02:22:05 +06:00 committed by GitHub
parent 75279ddfbc
commit 066a857d19
1 changed files with 4 additions and 0 deletions

View File

@ -107,6 +107,10 @@ class WC_Template_Loader {
$search_files[] = $default_file;
$search_files[] = WC()->template_path() . $default_file;
if ( is_page_template() ) {
$search_files[] = get_page_template_slug(); // Supporting Custom Post Type Template
}
return array_unique( $search_files );
}