From 0b19a681d22688c296540f8825fc8f026f6d4b7f Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 12 May 2011 01:45:42 +0000 Subject: [PATCH] Make the footer text code a bit easier to read. see #17383, #17384. git-svn-id: https://develop.svn.wordpress.org/trunk@17879 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/admin-footer.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 ); +?>