mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
git-svn-id: http://svn.automattic.com/wordpress/trunk@17879 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2e98bd9563
commit
d130158fa5
@ -19,7 +19,16 @@ if ( !defined('ABSPATH') )
|
||||
<p id="footer-left" class="alignleft"><?php
|
||||
do_action( 'in_admin_footer' );
|
||||
$upgrade = apply_filters( 'update_footer', '' );
|
||||
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>
|
||||
$footer_text = array(
|
||||
'<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') ),
|
||||
);
|
||||
echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) );
|
||||
unset( $footer_text );
|
||||
?></p>
|
||||
<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user