Make admin screen titles filterable. Props caesarsgrunt. Fixes #15301

git-svn-id: http://svn.automattic.com/wordpress/trunk@16260 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-11-09 18:03:06 +00:00
parent e9952075ee
commit 4b260b3d0f
1 changed files with 4 additions and 2 deletions

View File

@ -11,9 +11,11 @@ if ( ! defined( 'WP_ADMIN' ) )
require_once( './admin.php' );
get_admin_page_title();
$title = esc_html( strip_tags( $title ) );
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, get_bloginfo( 'name' ) );
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
wp_user_settings();
wp_menu_unfold();
@ -30,7 +32,7 @@ if ( is_multisite() && !is_network_admin() && is_super_admin() ) {
<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
<title><?php echo $title; ?> &lsaquo; <?php bloginfo('name') ?> &#8212; WordPress</title>
<title><?php echo $admin_title; ?></title>
<?php
wp_admin_css( 'global' );