wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_default_page_to_edit › WordPress Function

Da2.5.0
Deprecato3.5.0
get_default_page_to_edit ( Nessun parametro )
Vedi:
Ritorna:
  • (WP_Post) Post object containing all the default post data as attributes
Definito a:
Codex:

Gets the default page information to use.



Sorgenti

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;
}