Is it possible to display the admin bar while in the Theme Customizer?
Is this what you are looking for? add_filter(‘show_admin_bar’, ‘__return_true’); Codex Btw following code in wp-config.php could help also: 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 … Read more