From 5e54944621c8b1b117fbbc693709aa9b680de638 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Fri, 29 Oct 2010 07:46:35 +0000 Subject: [PATCH] We never want an admin bar on an APP request either. See #14772. git-svn-id: https://develop.svn.wordpress.org/trunk@16072 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-app.php b/wp-app.php index 2eaf6195e7..5a58dc36a9 100644 --- a/wp-app.php +++ b/wp-app.php @@ -11,6 +11,7 @@ * @var bool */ define('APP_REQUEST', true); +define('WP_SHOW_ADMIN_BAR' , false); /** Set up WordPress environment */ require_once('./wp-load.php');