也许你可以试试这种不太干净的方法:)
add_action(\'after_setup_theme\',\'oneTimeStuffUponThemeSwitch\');
function oneTimeStuffUponThemeSwitch()
{
if (is_admin())
{
global $pagenow;
if(isset($_GET[\'activated\']) && $pagenow == "themes.php")
{
//your custom code
}
}
}
是的,您是对的,此操作会在每次页面加载时触发,但是该函数会检查您是否正在激活主题,以便您只执行一次自定义。是的,您可以将其粘贴到函数中。php文件。