wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_default_page_to_edit › WordPress Function

Od2.5.0
Przestarzały3.5.0
get_default_page_to_edit ( Brak parametrów )
Zobacz:
Powrót:
  • (WP_Post) Post object containing all the default post data as attributes
Zdefiniowane na:
Codex:

Gets the default page information to use.



Źródło

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