返回介绍

_wp_admin_html_begin()

发布于 2017-09-11 13:39:21 字数 2024 浏览 992 评论 0 收藏 0

_wp_admin_html_begin()

description


源代码

File: wp-admin/includes/template.php

function _wp_admin_html_begin() {
	global $is_IE;

	$admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : '';

	if ( $is_IE )
		@header('X-UA-Compatible: IE=edge');

?>
<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php
	/**
	 * Fires inside the HTML tag in the admin header.
	 *
	 * @since 2.2.0
	 */
	do_action( 'admin_xml_ns' );
?> <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php
	/** This action is documented in wp-admin/includes/template.php */
	do_action( 'admin_xml_ns' );
?> <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
<?php
}

Collapse full 源代码 code View on Trac


相关函数

Uses

  • wp-admin/includes/template.php: admin_xml_ns
  • wp-includes/general-template.php: language_attributes()
  • wp-includes/general-template.php: bloginfo()
  • wp-includes/admin-bar.php: is_admin_bar_showing()
  • wp-includes/plugin.php: do_action()
  • wp-includes/option.php: get_option()
  • Show 1 more use Hide more uses

Used By

  • wp-admin/includes/template.php: iframe_header()
  • wp-admin/includes/media.php: wp_iframe()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文