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:
parent
504c616055
commit
46f3985c39
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user