Changeset 17879
- Timestamp:
- 05/12/2011 01:45:42 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r17878 r17879 20 20 do_action( 'in_admin_footer' ); 21 21 $upgrade = apply_filters( 'update_footer', '' ); 22 echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> • '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' • '.sprintf( __( '<a href="%s">Rights</a>' ), admin_url( 'rights.php' ) ).' • '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' • '.sprintf(__('<a href="%s">Credits</a>'), admin_url('credits.php') ) ); ?></p> 22 $footer_text = array( 23 '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>', 24 __( '<a href="http://codex.wordpress.org/">Documentation</a>' ), 25 sprintf( __( '<a href="%s">Rights</a>' ), admin_url( 'rights.php' ) ), 26 __('<a href="http://wordpress.org/support/forum/4">Feedback</a>'), 27 sprintf(__('<a href="%s">Credits</a>'), admin_url('credits.php') ), 28 ); 29 echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) ); 30 unset( $footer_text ); 31 ?></p> 23 32 <p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p> 24 33 <div class="clear"></div>
Note: See TracChangeset
for help on using the changeset viewer.