Assume unattached attachments are published. fixes #12999
git-svn-id: http://svn.automattic.com/wordpress/trunk@14087 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
31c4756a42
commit
5e923222fa
|
@ -468,14 +468,17 @@ function get_post_mime_type($ID = '') {
|
|||
function get_post_status($ID = '') {
|
||||
$post = get_post($ID);
|
||||
|
||||
if ( is_object($post) ) {
|
||||
if ( ('attachment' == $post->post_type) && $post->post_parent && ($post->ID != $post->post_parent) )
|
||||
return get_post_status($post->post_parent);
|
||||
else
|
||||
return $post->post_status;
|
||||
}
|
||||
if ( !is_object($post) )
|
||||
return false;
|
||||
|
||||
return false;
|
||||
// Unattached attachments are assumed to be published.
|
||||
if ( ('attachment' == $post->post_type) && ('inherit' == $post->post_status) && ( 0 == $post->post_parent) )
|
||||
return 'publish';
|
||||
|
||||
if ( ('attachment' == $post->post_type) && $post->post_parent && ($post->ID != $post->post_parent) )
|
||||
return get_post_status($post->post_parent);
|
||||
|
||||
return $post->post_status;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue