Changeset 5892
- Timestamp:
- 08/17/2007 10:33:52 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r5470 r5892 1 1 2 2 <div id="footer"> 3 <p class="logo"><a href="http://wordpress.org/" id="wordpress-logo"><img src="images/wordpress-logo.png" alt="WordPress" /></a></p> 4 <p class="docs"><?php _e('<a href="http://codex.wordpress.org/">Documentation</a>'); ?> — <?php _e('<a href="http://wordpress.org/support/">Support Forums</a>'); ?><br /> 5 <?php printf( __('Version %s'), get_bloginfo('version') ); ?></p> 3 <p><?php 4 5 $upgrade = apply_filters( 'update_footer', '' ); 6 printf( __( 'Thank you for creating with <a href="%s">WordPress</a> | <a href="%s">Documentation</a> | <a href="%s">Feedback</a> %s' ), 'http://wordpress.org/', 'http://codex.wordpress.org/', 'http://wordpress.org/support/forum/4', $upgrade ) 7 8 ?></p> 6 9 </div> 7 10 <?php do_action('admin_footer', ''); ?> -
trunk/wp-admin/admin-header.php
r5883 r5892 43 43 ?> 44 44 </head> 45 <body >45 <body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>"> 46 46 <div id="wphead"> 47 47 <h1><?php bloginfo('name'); ?> <span id="viewsite">(<a href="<?php echo get_option('home') . '/'; ?>"><?php _e('View site »') ?></a>)</span></h1> -
trunk/wp-admin/includes/admin.php
r5566 r5892 13 13 require_once(ABSPATH . 'wp-admin/includes/theme.php'); 14 14 require_once(ABSPATH . 'wp-admin/includes/user.php'); 15 require_once(ABSPATH . 'wp-admin/includes/update.php'); 15 16 16 17 require_once(ABSPATH . WPINC . '/registration.php'); -
trunk/wp-admin/wp-admin.css
r5883 r5892 176 176 } 177 177 178 img , #footer a{178 img { 179 179 border: 0; 180 180 } … … 654 654 #footer { 655 655 clear: both; 656 text-align: center; 657 width: 500px; 658 margin: auto; 659 height: 100px; 660 } 661 662 #footer .docs { 663 padding-top: 19px; 664 line-height: 160%; 665 } 666 667 #footer .docs a { 668 text-decoration: underline; 669 } 670 #footer .logo { 671 float: left; 672 margin: 0; 673 padding: 0; 656 height: 35px; 657 padding-left: 40px; 658 margin: 15px 5%; 659 background: url('images/logo-ghost.png') no-repeat top left; 660 } 661 662 #footer p { 663 margin: 0; 664 padding: 5px 0; 674 665 } 675 666 … … 1339 1330 text-decoration:underline; 1340 1331 } 1332 1333 #update-nag { 1334 width: 100%; 1335 position: absolute; 1336 top: 0; 1337 left: 0; 1338 background: #fff; 1339 border-bottom: 2px solid #911; 1340 text-align: center; 1341 font-size: 11px; 1342 height: 18px; 1343 } 1344 1345 .nagtime { 1346 padding-top: 15px; 1347 } 1348 1349 .nagtime #user_info { 1350 top: 17px ; 1351 } -
trunk/wp-settings.php
r5890 r5892 194 194 require (ABSPATH . WPINC . '/script-loader.php'); 195 195 require (ABSPATH . WPINC . '/taxonomy.php'); 196 require (ABSPATH . WPINC . '/update.php'); 196 197 require (ABSPATH . WPINC . '/canonical.php'); 197 198
Note: See TracChangeset
for help on using the changeset viewer.