Deprecate get_default_post_to_edit(). Props SergeyBiryukov. fixes #21677

git-svn-id: https://develop.svn.wordpress.org/trunk@21800 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2012-09-10 20:39:45 +00:00
parent 504c616055
commit 46f3985c39
2 changed files with 17 additions and 13 deletions

View File

@ -974,3 +974,20 @@ function get_post_to_edit( $id ) {
return get_post( $id, OBJECT, 'edit' );
}
/**
* Get the default page information to use.
*
* @since 2.5.0
* @deprecated 3.5.0
* @deprecated Use get_default_post_to_edit()
*
* @return WP_Post Post object containing all the default post data as attributes
*/
function get_default_page_to_edit() {
_deprecated_function( __FUNCTION__, '3.5', "get_default_post_to_edit( 'page' )" );
$page = get_default_post_to_edit();
$page->post_type = 'page';
return $page;
}

View File

@ -458,19 +458,6 @@ function get_default_post_to_edit( $post_type = 'post', $create_in_db = false )
return $post;
}
/**
* Get the default page information to use.
*
* @since 2.5.0
*
* @return WP_Post Post object containing all the default post data as attributes
*/
function get_default_page_to_edit() {
$page = get_default_post_to_edit();
$page->post_type = 'page';
return $page;
}
/**
* Determine if a post exists based on title, content, and date
*