Make WordPress Core

Changeset 14163


Ignore:
Timestamp:
04/19/2010 01:33:18 PM (14 years ago)
Author:
nbachiyski
Message:

Indent and split into several lines the HTML for wp-admin logo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-header.php

    r14139 r14163  
    105105?>
    106106
    107 <img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="32" height="32" /> <h1 id="site-heading" <?php echo $title_class ?>><a href="<?php echo trailingslashit( get_bloginfo('url') ); ?>" title="<?php esc_attr_e('Visit Site') ?>"><span id="site-title"><?php echo $blog_name ?></span></a><?php if ( current_user_can('manage_options') && ! get_option('blog_public') ) { ?> <a id="privacy-on-link" href="options-privacy.php" title="<?php esc_attr_e('Your site is asking search engines not to index its content') ?>"><?php _e('Search Engines Blocked') ?></a><?php } ?></h1>
     107<img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="32" height="32" />
     108<h1 id="site-heading" <?php echo $title_class ?>>
     109    <a href="<?php echo trailingslashit( get_bloginfo( 'url' ) ); ?>" title="<?php esc_attr_e('Visit Site') ?>">
     110        <span id="site-title"><?php echo $blog_name ?></span>
     111    </a>
     112<?php if ( current_user_can('manage_options') && !get_option('blog_public') ): ?>
     113    <a id="privacy-on-link" href="options-privacy.php" title="<?php esc_attr_e('Your site is asking search engines not to index its content') ?>"><?php _e('Search Engines Blocked') ?></a>
     114<?php endif; ?>
     115</h1>
    108116
    109117<?php do_action('in_admin_header'); ?>
Note: See TracChangeset for help on using the changeset viewer.