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 SP_Widget_Countdown extends WP_Widget {
function __construct() {
$widget_ops = array('classname' => 'widget_countdown widget_sp_countdown', 'description' => __( 'SportsPress widget.', 'sportspress' ) );
parent::__construct('sp_countdown', __( 'Countdown', 'sportspress' ), $widget_ops);
$widget_ops = array('classname' => 'widget_countdown widget_sp_countdown', 'description' => __( 'A clock that counts down to an upcoming event.', 'sportspress' ) );
parent::__construct('sp_countdown', __( 'SportsPress Countdown', 'sportspress' ), $widget_ops);
}
function widget( $args, $instance ) {