Changeset 21366 for trunk/wp-admin/admin-footer.php
- Timestamp:
- 07/30/2012 07:37:51 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r18888 r21366 19 19 <?php do_action( 'in_admin_footer' ); ?> 20 20 <p id="footer-left" class="alignleft"><?php 21 $upgrade = apply_filters( 'update_footer', '' ); 22 $footer_text = array( 23 '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>', 24 ); 25 echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) ); 26 unset( $footer_text ); 21 echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>' ); 27 22 ?></p> 28 <p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>23 <p id="footer-upgrade" class="alignright"><?php echo apply_filters( 'update_footer', '' ); ?></p> 29 24 <div class="clear"></div> 30 25 </div>
Note: See TracChangeset
for help on using the changeset viewer.