mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
Added new status fields.
git-svn-id: https://develop.svn.wordpress.org/trunk@140 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e55a53085a
commit
918fbbb95f
@ -502,6 +502,10 @@ function get_postdata($postid) {
|
||||
'Excerpt' => $post->post_excerpt,
|
||||
'Title' => $post->post_title,
|
||||
'Category' => $post->post_category,
|
||||
'post_status' => $post->post_status,
|
||||
'comment_status' => $post->comment_status,
|
||||
'ping_status' => $post->ping_status,
|
||||
'post_password' => $post->post_password
|
||||
);
|
||||
return($postdata);
|
||||
}
|
||||
@ -516,9 +520,10 @@ function get_postdata2($postid=0) { // less flexible, but saves mysql queries
|
||||
'Excerpt' => $post->post_excerpt,
|
||||
'Title' => $post->post_title,
|
||||
'Category' => $post->post_category,
|
||||
# 'Notify' => $post->post_notifycomments,
|
||||
# 'Clickable' => $post->post_make_clickable,
|
||||
'Karma' => $post->post_karma // this isn't used yet
|
||||
'post_status' => $post->post_status,
|
||||
'comment_status' => $post->comment_status,
|
||||
'ping_status' => $post->ping_status,
|
||||
'post_password' => $post->post_password
|
||||
);
|
||||
return($postdata);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user