数组中的帖子ID($ post-> ID)

时间:2011-08-15 13:18:44

标签: wordpress

get_post将帖子ID作为具有多个值的数组( $post->ID )返回。我需要特定帖子的帖子ID,如何提取这个?

1 个答案:

答案 0 :(得分:0)

您正在使用正确的功能:http://codex.wordpress.org/Function_Reference/get_post

如果您使用的是get_posts(); ,那将返回多个ID,但使用get_post只会返回包含单个帖子的对象或数组。 e.g:

<?php
$my_post_id = 20;
$my_post = get_post($my_post_id); 
$title = $my_post->post_title;
?>
相关问题