如何防止在管理屏幕中加载函数? 时间:2020-06-16 作者:Javascript Asking Account 当我将此代码添加到主题时functions.php 文件,它使我的管理面板崩溃。如何防止它加载到管理屏幕中?//add_action(\'init\', \'hekim_sticky_header\'); // I want load this only if it is not admin panel 1 个回复 最合适的回答,由SO网友:Pat J 整理而成 您可以使用is_admin() 要检查的功能:add_action( \'init\', \'hekim_sticky_header\' ); function hekim_sticky_header() { if ( is_admin() ) { return; } // Rest of your function goes here. } 文章导航