我已将所有函数拆分为单独的文件,并从函数中加载这些文件。php使用以下内容:
require get_template_directory() . \'/inc/bhh-functions/scripts-styles.php\';
require get_template_directory() . \'/inc/bhh-functions/user-functions.php\';
然而,我现在有一个函数文件,我只想在某个分类页面上加载它。我尝试了以下方法和其他方法,但没有成功。
if (has_term(\'16\', \'product_cat\', )) {
require get_template_directory() . \'/inc/bhh-functions/tax-functions.php\';
}