我正在尝试为WooCommerce中的单个产品页面构建自定义视图。如果产品说的是“自定义”类别,我希望WooCommerce通过切换到自定义页面布局来检测这一点,如果产品属于该类别。
我尝试通过将以下代码添加到single-product.php
来实现此目的 if (is_product_category( 'custom')) {
wc_get_template_part( 'content', 'single-product-custom' );
} else {
wc_get_template_part( 'content', 'single-product' );
}
我创建了一个名为'custom'的类别,并创建了一个名为'conent-single-product-custom.php'的模板,但如果我将项目放在以下自定义类别中,我会收到错误:
警告:include(/home/website/public_html/wp-content/themes/theme/woocommerce/single-product-custom.php):无法打开流:/ home /中没有此类文件或目录第89行的website / public_html / wp-includes / template-loader.php