wp_dashboard_quick_press_output

The timeline below displays how wordpress function wp_dashboard_quick_press_output has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Output the QuickPress dashboard widget.
 *
 * @since 3.0.0
 * @deprecated 3.2.0 Use wp_dashboard_quick_press()
 * @see wp_dashboard_quick_press()
 */
function wp_dashboard_quick_press_output()
{
    _deprecated_function(__FUNCTION__, '3.2.0', 'wp_dashboard_quick_press()');
    wp_dashboard_quick_press();
}

WordPress Version: 4.4

/**
 * Output the QuickPress dashboard widget.
 *
 * @since 3.0.0
 * @deprecated 3.2.0 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();
}

WordPress Version: 3.7

/**
 * 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();
}