Warning: This function has been deprecated. Use wp_dashboard_quick_press() instead.

wp_dashboard_quick_press_output() WordPress Function

The wp_dashboard_quick_press_output() function is used to display a quickpress form on the WordPress Dashboard. Quickpress is a form that allows you to quickly create a new post or page.

wp_dashboard_quick_press_output() #

Output the QuickPress dashboard widget.


Description

Top ↑

See also


Top ↑

Source

File: wp-admin/includes/deprecated.php

function wp_dashboard_quick_press_output() {
	_deprecated_function( __FUNCTION__, '3.2.0', 'wp_dashboard_quick_press()' );
	wp_dashboard_quick_press();
}


Top ↑

Changelog

Changelog
VersionDescription
3.2.0Use wp_dashboard_quick_press()
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More