New admin_footer_text filter. props JohnLamansky. fixes #9552
git-svn-id: http://svn.automattic.com/wordpress/trunk@10976 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
29d4257fbd
commit
b5d4fae306
|
@ -16,7 +16,7 @@
|
|||
<p id="footer-left" class="alignleft"><?php
|
||||
do_action( 'in_admin_footer' );
|
||||
$upgrade = apply_filters( 'update_footer', '' );
|
||||
echo '<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>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>'); ?>
|
||||
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>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?>
|
||||
</p>
|
||||
<?php // if ( $is_IE ) browse_happy(); ?>
|
||||
<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
|
||||
|
|
Loading…
Reference in New Issue