2006-02-16 20:29:33 -05:00
|
|
|
<?php
|
2008-08-11 16:26:31 -04:00
|
|
|
/**
|
|
|
|
* WordPress Administration Template Header
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2019-07-09 01:45:58 -04:00
|
|
|
header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
2020-02-06 01:33:11 -05:00
|
|
|
require_once __DIR__ . '/admin.php';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2006-05-22 13:16:05 -04:00
|
|
|
|
2015-05-28 17:41:30 -04:00
|
|
|
/**
|
|
|
|
* In case admin-header.php is included in a function.
|
|
|
|
*
|
|
|
|
* @global string $title
|
|
|
|
* @global string $hook_suffix
|
2019-08-03 22:03:55 -04:00
|
|
|
* @global WP_Screen $current_screen WordPress current screen object.
|
2019-08-03 21:46:55 -04:00
|
|
|
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
2022-04-04 14:26:06 -04:00
|
|
|
* @global string $pagenow The filename of the current screen.
|
2015-05-28 17:41:30 -04:00
|
|
|
* @global string $update_title
|
|
|
|
* @global int $total_update_count
|
|
|
|
* @global string $parent_file
|
2022-04-04 14:39:01 -04:00
|
|
|
* @global string $typenow The post type of the current screen.
|
2015-05-28 17:41:30 -04:00
|
|
|
*/
|
2016-08-31 01:49:37 -04:00
|
|
|
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
|
2021-11-01 18:32:58 -04:00
|
|
|
$update_title, $total_update_count, $parent_file, $typenow;
|
2011-08-10 15:54:59 -04:00
|
|
|
|
2011-11-30 22:37:22 -05:00
|
|
|
// Catch plugins that include admin-header.php before admin.php completes.
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( empty( $current_screen ) ) {
|
2011-11-30 22:37:22 -05:00
|
|
|
set_current_screen();
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2011-11-30 22:37:22 -05:00
|
|
|
|
2006-05-22 13:16:05 -04:00
|
|
|
get_admin_page_title();
|
2020-03-19 22:20:08 -04:00
|
|
|
$title = strip_tags( $title );
|
2010-07-30 16:34:54 -04:00
|
|
|
|
2016-11-20 21:46:30 -05:00
|
|
|
if ( is_network_admin() ) {
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: Network admin screen title. %s: Network title. */
|
2020-03-19 22:20:08 -04:00
|
|
|
$admin_title = sprintf( __( 'Network Admin: %s' ), get_network()->site_name );
|
2016-11-20 21:46:30 -05:00
|
|
|
} elseif ( is_user_admin() ) {
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: User dashboard screen title. %s: Network title. */
|
2020-03-19 22:20:08 -04:00
|
|
|
$admin_title = sprintf( __( 'User Dashboard: %s' ), get_network()->site_name );
|
2016-11-20 21:46:30 -05:00
|
|
|
} else {
|
2010-11-18 18:02:52 -05:00
|
|
|
$admin_title = get_bloginfo( 'name' );
|
2016-11-20 21:46:30 -05:00
|
|
|
}
|
2010-11-18 18:02:52 -05:00
|
|
|
|
2020-05-12 14:32:08 -04:00
|
|
|
if ( $admin_title === $title ) {
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: Admin screen title. %s: Admin screen name. */
|
2018-03-11 12:44:34 -04:00
|
|
|
$admin_title = sprintf( __( '%s — WordPress' ), $title );
|
2016-11-20 21:46:30 -05:00
|
|
|
} else {
|
2021-11-07 17:09:56 -05:00
|
|
|
$screen_title = $title;
|
|
|
|
|
|
|
|
if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) {
|
|
|
|
$post_title = get_the_title();
|
|
|
|
if ( ! empty( $post_title ) ) {
|
|
|
|
$post_type_obj = get_post_type_object( $typenow );
|
|
|
|
$screen_title = sprintf(
|
|
|
|
/* translators: Editor admin screen title. 1: "Edit item" text for the post type, 2: Post title. */
|
|
|
|
__( '%1$s “%2$s”' ),
|
|
|
|
$post_type_obj->labels->edit_item,
|
|
|
|
$post_title
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */
|
2021-11-07 17:09:56 -05:00
|
|
|
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $screen_title, $admin_title );
|
2016-11-20 21:46:30 -05:00
|
|
|
}
|
2010-11-18 18:02:52 -05:00
|
|
|
|
Administration: Improve user experience and clarify when in recovery mode.
This changeset introduces several changes around usability when recovery mode is active:
* Display a notice in the admin clarifying that the user is in recovery mode.
* Use a highlight color for the admin bar link to exit recovery mode.
* Exit recovery mode automatically when logging out.
* Include a recovery mode indicator in the title tag.
Props aandrewdixon, azaozz, dhanukanuwan, flixos90, henrywright, karmatosed, mapk, melchoyce, spacedmonkey, TimothyBlynJacobs, tinkerbelly.
See #46608.
Built from https://develop.svn.wordpress.org/trunk@45117
git-svn-id: http://core.svn.wordpress.org/trunk@44926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-04-05 13:00:52 -04:00
|
|
|
if ( wp_is_recovery_mode() ) {
|
|
|
|
/* translators: %s: Admin screen title. */
|
2019-04-12 15:05:51 -04:00
|
|
|
$admin_title = sprintf( __( 'Recovery Mode — %s' ), $admin_title );
|
Administration: Improve user experience and clarify when in recovery mode.
This changeset introduces several changes around usability when recovery mode is active:
* Display a notice in the admin clarifying that the user is in recovery mode.
* Use a highlight color for the admin bar link to exit recovery mode.
* Exit recovery mode automatically when logging out.
* Include a recovery mode indicator in the title tag.
Props aandrewdixon, azaozz, dhanukanuwan, flixos90, henrywright, karmatosed, mapk, melchoyce, spacedmonkey, TimothyBlynJacobs, tinkerbelly.
See #46608.
Built from https://develop.svn.wordpress.org/trunk@45117
git-svn-id: http://core.svn.wordpress.org/trunk@44926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-04-05 13:00:52 -04:00
|
|
|
}
|
|
|
|
|
2013-09-19 12:33:08 -04:00
|
|
|
/**
|
2016-05-22 14:01:30 -04:00
|
|
|
* Filters the title tag content for an admin page.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string $admin_title The page title, with extra context added.
|
|
|
|
* @param string $title The original page title.
|
|
|
|
*/
|
2010-11-09 13:03:06 -05:00
|
|
|
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
|
|
|
|
|
2008-12-05 00:33:36 -05:00
|
|
|
wp_user_settings();
|
2010-07-30 16:34:54 -04:00
|
|
|
|
2011-10-17 16:57:32 -04:00
|
|
|
_wp_admin_html_begin();
|
2006-01-10 00:16:17 -05:00
|
|
|
?>
|
2020-03-19 22:20:08 -04:00
|
|
|
<title><?php echo esc_html( $admin_title ); ?></title>
|
2008-03-02 15:17:30 -05:00
|
|
|
<?php
|
2008-05-21 19:24:23 -04:00
|
|
|
|
2011-08-20 23:46:43 -04:00
|
|
|
wp_enqueue_style( 'colors' );
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_enqueue_script( 'utils' );
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-09 19:27:10 -05:00
|
|
|
wp_enqueue_script( 'svg-painter' );
|
2008-05-21 19:24:23 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
|
2008-02-10 03:10:11 -05:00
|
|
|
?>
|
2004-08-01 04:04:39 -04:00
|
|
|
<script type="text/javascript">
|
External Libraries: Further fix jQuery deprecations in WordPress core.
Follow-up to [50001], [50270], [50367], [50383], [50410], [50420], [50429], [50547].
Props chaion07, Clorith, costdev, desrosj, malthert, peterwilsoncc, presskopp, promz, sabernhardt, SergeyBiryukov, toro_unit, wpnomad.
Fixes #51519.
Built from https://develop.svn.wordpress.org/trunk@52285
git-svn-id: http://core.svn.wordpress.org/trunk@51877 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-11-30 12:18:01 -05:00
|
|
|
addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
|
2020-10-29 14:03:11 -04:00
|
|
|
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>',
|
|
|
|
pagenow = '<?php echo esc_js( $current_screen->id ); ?>',
|
|
|
|
typenow = '<?php echo esc_js( $current_screen->post_type ); ?>',
|
|
|
|
adminpage = '<?php echo esc_js( $admin_body_class ); ?>',
|
|
|
|
thousandsSeparator = '<?php echo esc_js( $wp_locale->number_format['thousands_sep'] ); ?>',
|
|
|
|
decimalPoint = '<?php echo esc_js( $wp_locale->number_format['decimal_point'] ); ?>',
|
2010-05-27 14:57:07 -04:00
|
|
|
isRtl = <?php echo (int) is_rtl(); ?>;
|
2003-05-22 08:12:53 -04:00
|
|
|
</script>
|
2008-10-02 07:04:09 -04:00
|
|
|
<?php
|
2006-08-28 19:08:48 -04:00
|
|
|
|
2013-09-19 12:33:08 -04:00
|
|
|
/**
|
2023-06-14 10:08:18 -04:00
|
|
|
* Fires when enqueuing scripts for all admin pages.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @param string $hook_suffix The current admin page.
|
|
|
|
*/
|
|
|
|
do_action( 'admin_enqueue_scripts', $hook_suffix );
|
|
|
|
|
|
|
|
/**
|
2014-03-25 04:05:15 -04:00
|
|
|
* Fires when styles are printed for a specific admin page based on $hook_suffix.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
2019-07-04 21:45:56 -04:00
|
|
|
do_action( "admin_print_styles-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2013-09-19 12:33:08 -04:00
|
|
|
|
|
|
|
/**
|
2014-03-25 04:05:15 -04:00
|
|
|
* Fires when styles are printed for all admin pages.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_print_styles' );
|
|
|
|
|
|
|
|
/**
|
2014-03-25 04:05:15 -04:00
|
|
|
* Fires when scripts are printed for a specific admin page based on $hook_suffix.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*/
|
2019-07-04 21:45:56 -04:00
|
|
|
do_action( "admin_print_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2013-09-19 12:33:08 -04:00
|
|
|
|
|
|
|
/**
|
2014-03-25 04:05:15 -04:00
|
|
|
* Fires when scripts are printed for all admin pages.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_print_scripts' );
|
|
|
|
|
|
|
|
/**
|
2014-11-23 23:27:23 -05:00
|
|
|
* Fires in head section for a specific admin page.
|
|
|
|
*
|
2021-09-21 14:21:00 -04:00
|
|
|
* The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix
|
2014-11-23 23:27:23 -05:00
|
|
|
* for the admin page.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*/
|
2019-07-04 21:45:56 -04:00
|
|
|
do_action( "admin_head-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2013-09-19 12:33:08 -04:00
|
|
|
|
|
|
|
/**
|
2014-11-23 23:27:23 -05:00
|
|
|
* Fires in head section for all admin pages.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_head' );
|
2009-04-04 09:40:21 -04:00
|
|
|
|
2020-05-16 14:42:12 -04:00
|
|
|
if ( 'f' === get_user_setting( 'mfold' ) ) {
|
2009-04-29 01:43:03 -04:00
|
|
|
$admin_body_class .= ' folded';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2010-12-13 16:21:50 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! get_user_setting( 'unfold' ) ) {
|
2012-08-21 18:46:30 -04:00
|
|
|
$admin_body_class .= ' auto-fold';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2012-08-21 18:46:30 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_admin_bar_showing() ) {
|
2010-12-13 16:21:50 -05:00
|
|
|
$admin_body_class .= ' admin-bar';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-04 10:05:57 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_rtl() ) {
|
2011-06-02 18:19:58 -04:00
|
|
|
$admin_body_class .= ' rtl';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2011-06-02 18:19:58 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( $current_screen->post_type ) {
|
2013-08-26 14:18:09 -04:00
|
|
|
$admin_body_class .= ' post-type-' . $current_screen->post_type;
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2013-08-26 14:18:09 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( $current_screen->taxonomy ) {
|
2013-08-26 14:18:09 -04:00
|
|
|
$admin_body_class .= ' taxonomy-' . $current_screen->taxonomy;
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2013-08-26 14:18:09 -04:00
|
|
|
|
2020-10-08 17:15:13 -04:00
|
|
|
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', (float) get_bloginfo( 'version' ) );
|
2016-08-31 01:49:37 -04:00
|
|
|
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', get_bloginfo( 'version' ) ) );
|
2011-05-18 14:11:48 -04:00
|
|
|
$admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
|
2016-10-03 03:04:29 -04:00
|
|
|
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_user_locale() ) ) );
|
2011-05-18 14:11:48 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( wp_is_mobile() ) {
|
2012-04-09 21:19:30 -04:00
|
|
|
$admin_body_class .= ' mobile';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2012-04-09 21:19:30 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_multisite() ) {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-09 19:27:10 -05:00
|
|
|
$admin_body_class .= ' multisite';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-09 19:27:10 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_network_admin() ) {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-09 19:27:10 -05:00
|
|
|
$admin_body_class .= ' network-admin';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-09 19:27:10 -05:00
|
|
|
|
|
|
|
$admin_body_class .= ' no-customize-support no-svg';
|
2012-05-09 17:47:15 -04:00
|
|
|
|
2018-12-13 20:21:38 -05:00
|
|
|
if ( $current_screen->is_block_editor() ) {
|
2021-05-25 04:40:25 -04:00
|
|
|
$admin_body_class .= ' block-editor-page wp-embed-responsive';
|
2018-12-13 20:21:38 -05:00
|
|
|
}
|
|
|
|
|
2020-09-02 21:43:07 -04:00
|
|
|
$error_get_last = error_get_last();
|
Administration: Don't print the `.php-error` class in the admin header for PHP notices in `wp-config.php`.
Any notices in that file happen before `WP_DEBUG` takes effect, and should not be displayed with the `error_reporting` level previously set in `wp-load.php`.
Adding the class when there is no notice displayed results in extra padding under the admin bar, which should be avoided.
Follow-up to [20102], [21025], [26620], [47745].
Props akissz, tw2113, laxman-prajapati, sabernhardt, johnbillion, SergeyBiryukov.
Fixes #51073.
Built from https://develop.svn.wordpress.org/trunk@48850
git-svn-id: http://core.svn.wordpress.org/trunk@48612 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-08-24 06:48:06 -04:00
|
|
|
|
2020-05-02 17:01:05 -04:00
|
|
|
// Print a CSS class to make PHP errors visible.
|
2020-09-02 21:43:07 -04:00
|
|
|
if ( $error_get_last && WP_DEBUG && WP_DEBUG_DISPLAY && ini_get( 'display_errors' )
|
Administration: Don't print the `.php-error` class in the admin header for PHP notices in `wp-config.php`.
Any notices in that file happen before `WP_DEBUG` takes effect, and should not be displayed with the `error_reporting` level previously set in `wp-load.php`.
Adding the class when there is no notice displayed results in extra padding under the admin bar, which should be avoided.
Follow-up to [20102], [21025], [26620], [47745].
Props akissz, tw2113, laxman-prajapati, sabernhardt, johnbillion, SergeyBiryukov.
Fixes #51073.
Built from https://develop.svn.wordpress.org/trunk@48850
git-svn-id: http://core.svn.wordpress.org/trunk@48612 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-08-24 06:48:06 -04:00
|
|
|
// Don't print the class for PHP notices in wp-config.php, as they happen before WP_DEBUG takes effect,
|
|
|
|
// and should not be displayed with the `error_reporting` level previously set in wp-load.php.
|
2020-09-02 21:43:07 -04:00
|
|
|
&& ( E_NOTICE !== $error_get_last['type'] || 'wp-config.php' !== wp_basename( $error_get_last['file'] ) )
|
Administration: Don't print the `.php-error` class in the admin header for PHP notices in `wp-config.php`.
Any notices in that file happen before `WP_DEBUG` takes effect, and should not be displayed with the `error_reporting` level previously set in `wp-load.php`.
Adding the class when there is no notice displayed results in extra padding under the admin bar, which should be avoided.
Follow-up to [20102], [21025], [26620], [47745].
Props akissz, tw2113, laxman-prajapati, sabernhardt, johnbillion, SergeyBiryukov.
Fixes #51073.
Built from https://develop.svn.wordpress.org/trunk@48850
git-svn-id: http://core.svn.wordpress.org/trunk@48612 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-08-24 06:48:06 -04:00
|
|
|
) {
|
2020-05-02 17:01:05 -04:00
|
|
|
$admin_body_class .= ' php-error';
|
|
|
|
}
|
|
|
|
|
2020-09-02 21:43:07 -04:00
|
|
|
unset( $error_get_last );
|
Administration: Don't print the `.php-error` class in the admin header for PHP notices in `wp-config.php`.
Any notices in that file happen before `WP_DEBUG` takes effect, and should not be displayed with the `error_reporting` level previously set in `wp-load.php`.
Adding the class when there is no notice displayed results in extra padding under the admin bar, which should be avoided.
Follow-up to [20102], [21025], [26620], [47745].
Props akissz, tw2113, laxman-prajapati, sabernhardt, johnbillion, SergeyBiryukov.
Fixes #51073.
Built from https://develop.svn.wordpress.org/trunk@48850
git-svn-id: http://core.svn.wordpress.org/trunk@48612 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-08-24 06:48:06 -04:00
|
|
|
|
2012-04-09 21:19:30 -04:00
|
|
|
?>
|
2009-04-04 13:07:31 -04:00
|
|
|
</head>
|
2013-09-19 12:33:08 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-05-22 14:01:30 -04:00
|
|
|
* Filters the CSS classes for the body tag in the admin.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
2014-12-06 16:32:24 -05:00
|
|
|
* This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters
|
|
|
|
* in two important ways:
|
2014-12-06 18:21:24 -05:00
|
|
|
*
|
2014-12-06 16:32:24 -05:00
|
|
|
* 1. `$classes` is a space-separated string of class names instead of an array.
|
|
|
|
* 2. Not all core admin classes are filterable, notably: wp-admin, wp-core-ui,
|
|
|
|
* and no-js cannot be removed.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
2014-12-06 16:32:24 -05:00
|
|
|
* @param string $classes Space-separated list of CSS classes.
|
2013-09-19 12:33:08 -04:00
|
|
|
*/
|
2014-12-06 16:32:24 -05:00
|
|
|
$admin_body_classes = apply_filters( 'admin_body_class', '' );
|
2018-04-13 10:03:20 -04:00
|
|
|
$admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class );
|
2013-09-19 12:33:08 -04:00
|
|
|
?>
|
Administration: Add missing escaping for CSS classes on the body tag in the admin.
Follow-up to [5892], [10823], [10868], [18882], [21014], [22000], [48060].
Propos rafiem, costdev, dd32, audrasjb, westonruter, SergeyBiryukov.
Fixes #58336.
Built from https://develop.svn.wordpress.org/trunk@55846
git-svn-id: http://core.svn.wordpress.org/trunk@55358 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-05-22 10:16:19 -04:00
|
|
|
<body class="wp-admin wp-core-ui no-js <?php echo esc_attr( $admin_body_classes ); ?>">
|
2012-04-16 10:59:09 -04:00
|
|
|
<script type="text/javascript">
|
|
|
|
document.body.className = document.body.className.replace('no-js','js');
|
|
|
|
</script>
|
2008-12-27 07:18:38 -05:00
|
|
|
|
2012-05-25 18:26:00 -04:00
|
|
|
<?php
|
2013-05-09 18:45:14 -04:00
|
|
|
// Make sure the customize body classes are correct as early as possible.
|
2014-07-14 15:01:16 -04:00
|
|
|
if ( current_user_can( 'customize' ) ) {
|
2012-05-25 18:26:00 -04:00
|
|
|
wp_customize_support_script();
|
2014-07-14 15:01:16 -04:00
|
|
|
}
|
2012-05-25 18:26:00 -04:00
|
|
|
?>
|
2012-05-24 20:15:12 -04:00
|
|
|
|
2008-01-13 22:16:56 -05:00
|
|
|
<div id="wpwrap">
|
2020-02-06 01:33:11 -05:00
|
|
|
<?php require ABSPATH . 'wp-admin/menu-header.php'; ?>
|
2008-01-13 22:16:56 -05:00
|
|
|
<div id="wpcontent">
|
2008-05-19 11:41:31 -04:00
|
|
|
|
2011-05-06 19:06:24 -04:00
|
|
|
<?php
|
2013-09-19 12:33:08 -04:00
|
|
|
/**
|
|
|
|
* Fires at the beginning of the content section in an admin page.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
do_action( 'in_admin_header' );
|
2011-05-06 19:06:24 -04:00
|
|
|
?>
|
|
|
|
|
2015-04-01 09:17:27 -04:00
|
|
|
<div id="wpbody" role="main">
|
2010-01-15 11:58:36 -05:00
|
|
|
<?php
|
2018-08-19 06:18:26 -04:00
|
|
|
unset( $blog_name, $total_update_count, $update_title );
|
2010-01-26 13:16:53 -05:00
|
|
|
|
2011-09-26 17:03:38 -04:00
|
|
|
$current_screen->set_parentage( $parent_file );
|
|
|
|
|
2010-01-15 11:58:36 -05:00
|
|
|
?>
|
2008-10-26 21:22:24 -04:00
|
|
|
|
2019-01-17 06:55:51 -05:00
|
|
|
<div id="wpbody-content">
|
2008-08-29 02:36:31 -04:00
|
|
|
<?php
|
2011-09-30 20:24:44 -04:00
|
|
|
|
|
|
|
$current_screen->render_screen_meta();
|
2008-11-28 19:36:26 -05:00
|
|
|
|
2013-09-19 12:33:08 -04:00
|
|
|
if ( is_network_admin() ) {
|
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints network admin screen notices.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'network_admin_notices' );
|
|
|
|
} elseif ( is_user_admin() ) {
|
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints user admin screen notices.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'user_admin_notices' );
|
|
|
|
} else {
|
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints admin screen notices.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_notices' );
|
|
|
|
}
|
2010-08-02 11:36:57 -04:00
|
|
|
|
2013-09-19 12:33:08 -04:00
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints generic admin screen notices.
|
2013-09-19 12:33:08 -04:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
do_action( 'all_admin_notices' );
|
2008-11-11 17:40:16 -05:00
|
|
|
|
2020-02-09 11:55:09 -05:00
|
|
|
if ( 'options-general.php' === $parent_file ) {
|
2020-02-06 01:33:11 -05:00
|
|
|
require ABSPATH . 'wp-admin/options-head.php';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|