From 29b11ce0ae8ba79f69307d2dbf36fc448d247122 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 16 Mar 2009 22:45:16 +0000 Subject: [PATCH] Move meta widget to WP_Widget. see #8441 git-svn-id: http://svn.automattic.com/wordpress/trunk@10797 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-widgets.php | 52 --------------------------------- 1 file changed, 52 deletions(-) diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index 3658e2171c..e259cf2466 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -240,55 +240,6 @@ class WP_Widget_Archives extends WP_Widget { } } -/** - * Display meta widget. - * - * Displays log in/out, RSS feed links, etc. - * - * @since 2.2.0 - * - * @param array $args Widget arguments. - */ -function wp_widget_meta($args) { - extract($args); - $options = get_option('widget_meta'); - $title = empty($options['title']) ? __('Meta') : apply_filters('widget_title', $options['title']); -?> - - - - - -

- - 'widget_meta', 'description' => __( "Log in/out, admin, feed and WordPress links") ); - //wp_register_sidebar_widget('meta', __('Meta'), 'wp_widget_meta', $widget_ops); - //wp_register_widget_control('meta', __('Meta'), 'wp_widget_meta_control' ); new WP_Widget_Meta(); new WP_Widget_Search();