get_postdata

函数
get_postdata ( $postid )
参数
  • (int) $postid Post ID.
    Required:
返回值
  • (array) Post data.
相关
  • get_post()
定义位置
相关方法
setup_postdatagenerate_postdataget_postget_post_metaget_lastpostdate
引入
0.71
弃用
1.5.1

get_postdata函数是一个WordPress的函数,用于检索一个指定的文章的数据: 这个函数以文章对象或文章ID为参数,并返回一个文章数据的数组。

为一个给定的文章检索所有的文章数据。

function get_postdata($postid) {
	_deprecated_function( __FUNCTION__, '1.5.1', 'get_post()' );

	$post = get_post($postid);

	$postdata = array (
		'ID' => $post->ID,
		'Author_ID' => $post->post_author,
		'Date' => $post->post_date,
		'Content' => $post->post_content,
		'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,
		'to_ping' => $post->to_ping,
		'pinged' => $post->pinged,
		'post_type' => $post->post_type,
		'post_name' => $post->post_name
	);

	return $postdata;
}

常见问题

FAQs
查看更多 >