]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/deprecated.php
Wordpress 3.2
[autoinstalls/wordpress.git] / wp-admin / includes / deprecated.php
index a318f0ee7977c77bbe59c5fefc409b73a00d7d8b..3e02dbc2e9935899374bb2ef59bae87470cc46f0 100644 (file)
@@ -688,3 +688,16 @@ function get_others_pending($user_id) {
 
        return get_others_unpublished_posts($user_id, 'pending');
 }
+
+/**
+ * Output the QuickPress dashboard widget.
+ *
+ * @since 3.0.0
+ * @deprecated 3.2.0
+ * @deprecated Use wp_dashboard_quick_press()
+ * @see wp_dashboard_quick_press()
+ */
+function wp_dashboard_quick_press_output() {
+       _deprecated_function( __FUNCTION__, '3.2', 'wp_dashboard_quick_press()' );
+       wp_dashboard_quick_press();
+}