可以在主题定制器中显示管理栏吗?

时间:2013-10-16 作者:Xerain

我一直在使用调试栏+Kint调试器进行调试。目前,我正在开发一个自定义主题,试图在之后将一些代码挂接到customize\\u save\\u中。保存主题时,代码似乎没有运行,因此我希望能够访问调试栏,以便查看正在监视的变量。

有没有办法强制管理栏显示在主题定制器中?到目前为止,我的搜索结果中都是试图摆脱管理栏的人,而不是让它出现。。。。

1 个回复
SO网友:Charles

这就是你要找的吗

add_filter(\'show_admin_bar\', \'__return_true\');

Codex

顺便说一句,wp config中有以下代码。php还可以帮助:

define( \'WP_DEBUG\', true ); // Or false
   if ( WP_DEBUG ) {
   define( \'WP_DEBUG_LOG\', true ); // writes errors down in wp-content/debug.log
   define( \'WP_DEBUG_DISPLAY\', true );  // shows errors on screen output, set false to on write into logfile
   @ini_set(\'display_errors\',1); // set to zero to disable displaying it and only writing to logfile
   define(\'SAVEQUERIES\', true); // will have a performance impact  so disable if not needed
   define(\'SCRIPT_DEBUG\', true); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
}

结束