diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index e1325fce2a..b5207c59c7 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -19,7 +19,16 @@ if ( !defined('ABSPATH') ) +$footer_text = array( + '' . __( 'Thank you for creating with WordPress.' ) . '', + __( 'Documentation' ), + sprintf( __( 'Rights' ), admin_url( 'rights.php' ) ), + __('Feedback'), + sprintf(__('Credits'), admin_url('credits.php') ), +); +echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) ); +unset( $footer_text ); +?>