您可以在函数中包含或需要其他php文件。php文件,或者您可以考虑使用插件。插件将在任何主题上运行,因此如果这不是您想要的,您可以考虑在插件中使用一些代码来检查您的主题是否处于活动状态,例如:
<?php
$theme = wp_get_theme(); // gets the current theme
if (\'twentytwelve\' == $theme->name || \'twentytwelve\' == $theme->parent_theme) {
// if you\'re here twenty twelve is the active theme or is
// the current theme\'s parent theme
// Run your theme specific code here which will be ignored for other themes
}
注-代码取自/修改自:
How to check if a theme is active?