Rename widgets for better usability

This commit is contained in:
Brian Miyaji
2014-08-22 22:41:02 +10:00
parent c5733505d7
commit a5dda0a992
7 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ class SP_Widget_Player_Gallery extends WP_Widget {
function __construct() {
$widget_ops = array('classname' => 'widget_player_gallery widget_sp_player_gallery', 'description' => __( 'Display a gallery of players.', 'sportspress' ) );
parent::__construct('sp_player_gallery', __( 'SportsPress Player Gallery', 'sportspress' ), $widget_ops);
parent::__construct('sp_player_gallery', __( 'Player Gallery', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
}
function widget( $args, $instance ) {