如果你知道哪一页id , 例如,您可以更改页面。php
if ( get_the_ID() == \'99\' ) {
my_specific_page_99_calls();
}
然后是函数。php
my_specific_page_99_calls(
require_once(GABFIRE_FUNCTIONS_PATH. \'/review-options.php\');
require_once(GABFIRE_FUNCTIONS_PATH . \'/custom.php\');
require_once(GABFIRE_FUNCTIONS_PATH . \'/shortcodes.php\');
require_once(GABFIRE_FUNCTIONS_PATH . \'/post-types.php\');
)
我肯定还有其他选择,但这会让你成功的。
从特定页面中排除
if ( !in_category(\'cake\') {
my_specific_page_99_calls();
}