wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_default_page_to_edit › WordPress Function

Seit2.5.0
Veraltet3.5.0
get_default_page_to_edit ( Keine Parameter )
Siehe:
Gibt zurück:
  • (WP_Post) Post object containing all the default post data as attributes
Definiert in:
Codex:

Gets the default page information to use.



Quellcode

function get_default_page_to_edit() {
	_deprecated_function( __FUNCTION__, '3.5.0', "get_default_post_to_edit( 'page' )" );

	$page = get_default_post_to_edit();
	$page->post_type = 'page';
	return $page;
}