Make WordPress Core


Ignore:
Timestamp:
04/28/2011 12:02:24 PM (13 years ago)
Author:
nacin
Message:

Don't load the QuickPress widget via XHR. see #16927. Reverts [16725] as it's no longer needed. Reverts part of [14815], which introduced the behavior, see #10917.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/deprecated.php

    r17293 r17743  
    689689    return get_others_unpublished_posts($user_id, 'pending');
    690690}
     691
     692/**
     693 * Output the QuickPress dashboard widget.
     694 *
     695 * @since 3.0.0
     696 * @deprecated 3.2.0
     697 * @deprecated Use wp_dashboard_quick_press()
     698 * @see wp_dashboard_quick_press()
     699 */
     700function wp_dashboard_quick_press_output() {
     701    _deprecated_function( __FUNCTION__, '3.2', 'wp_dashboard_quick_press()' );
     702    wp_dashboard_quick_press();
     703}
Note: See TracChangeset for help on using the changeset viewer.