Update widget names and descriptions

This commit is contained in:
Brian Miyaji
2014-02-19 14:52:36 +11:00
parent 473a3b7937
commit 1e0daae7c1
6 changed files with 12 additions and 12 deletions

View File

@@ -2,8 +2,8 @@
class SportsPress_Widget_Player_list extends WP_Widget {
function __construct() {
$widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'SportsPress widget.', 'sportspress' ) );
parent::__construct('sp_player_list', __( 'Player List', 'sportspress' ), $widget_ops);
$widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'Displays a list of players.', 'sportspress' ) );
parent::__construct('sp_player_list', __( 'SportsPress Player List', 'sportspress' ), $widget_ops);
}
function widget( $args, $instance ) {