Rename nav menu widget. see #11817

git-svn-id: http://svn.automattic.com/wordpress/trunk@13378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-02-24 19:25:13 +00:00
parent 9ab7306993
commit 635409844e
1 changed files with 6 additions and 6 deletions

View File

@ -1037,15 +1037,15 @@ class WP_Widget_Tag_Cloud extends WP_Widget {
} }
/** /**
* Custom Navigation widget class * Navigation Menu widget class
* *
* @since 3.0.0 * @since 3.0.0
*/ */
class WP_CustomNavWidget extends WP_Widget { class WP_Nav_Menu_Widget extends WP_Widget {
function WP_CustomNavWidget() { function WP_Nav_Menu_Widget() {
$widget_ops = array('description' => __('Use this widget to add one of your Custom Navigation Menus as a widget.') ); $widget_ops = array('description' => __('Use this widget to add one of your navigation menus as a widget.') );
parent::WP_Widget(false, __('Custom Navigation Menu'), $widget_ops); parent::WP_Widget(false, __('Navigation Menu'), $widget_ops);
} }
function widget($args, $instance) { function widget($args, $instance) {
@ -1387,7 +1387,7 @@ function wp_widgets_init() {
register_widget('WP_Widget_Tag_Cloud'); register_widget('WP_Widget_Tag_Cloud');
register_widget('WP_CustomNavWidget'); register_widget('WP_Nav_Menu_Widget');
do_action('widgets_init'); do_action('widgets_init');
} }