Make WordPress Core


Ignore:
Timestamp:
12/06/2014 09:31:41 PM (11 years ago)
Author:
johnbillion
Message:

Improve various hook and filter docs so they are correctly parsed for the code reference.

Fixes #30558
Props DrewAPicture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/template.php

    r30730 r30754  
    15861586?>
    15871587</head>
    1588 <?php /** This filter is documented in wp-admin/admin-header.php */ ?>
    1589 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo apply_filters( 'admin_body_class', '' ) . ' ' . $admin_body_class; ?>">
     1588<?php
     1589/** This filter is documented in wp-admin/admin-header.php */
     1590$admin_body_classes = apply_filters( 'admin_body_class', '' );
     1591?>
     1592<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>">
    15901593<script type="text/javascript">
    15911594//<![CDATA[
     
    18691872        @header('X-UA-Compatible: IE=edge');
    18701873
    1871 /**
    1872  * Fires inside the HTML tag in the admin header.
    1873  *
    1874  * @since 2.2.0
    1875  */
    18761874?>
    18771875<!DOCTYPE html>
    18781876<!--[if IE 8]>
    1879 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php do_action( 'admin_xml_ns' ); ?> <?php language_attributes(); ?>>
     1877<html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php
     1878    /**
     1879     * Fires inside the HTML tag in the admin header.
     1880     *
     1881     * @since 2.2.0
     1882     */
     1883    do_action( 'admin_xml_ns' );
     1884?> <?php language_attributes(); ?>>
    18801885<![endif]-->
    18811886<!--[if !(IE 8) ]><!-->
    1882 <?php /** This action is documented in wp-admin/includes/template.php */ ?>
    1883 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action( 'admin_xml_ns' ); ?> <?php language_attributes(); ?>>
     1887<html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php
     1888    /** This action is documented in wp-admin/includes/template.php */
     1889    do_action( 'admin_xml_ns' );
     1890?> <?php language_attributes(); ?>>
    18841891<!--<![endif]-->
    18851892<head>
Note: See TracChangeset for help on using the changeset viewer.