在WP_Query中获取post id

时间:2011-07-27 02:09:00

标签: wordpress

我正在尝试在WordPress中执行查询以从特色类别中检索最后一个帖子,然后检查其自定义字段并显示存储在其中的图像。 好吧,我的代码因某种原因无法正常工作。你能发现任何错误吗?还是指出我正确的方向?

<?php $featured = new WP_Query('showposts=1&category_name=featured'); ?>
<?php if($featured->have_posts()) : ?>
<?php while($featured->have_posts()) : $featured->the_post(); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php echo get_post_meta($post->ID, 'image3', true); ?>"></a>
<?php endwhile; ?>
<?php endif; ?>

非常感谢!

1 个答案:

答案 0 :(得分:0)

我希望这会做你期望的事情

$args['category_name']='featured'; // posts from particular category
$args['orderby']='date'; //to get latest post
$args['order']='DESC';
$args['numberposts']='1';// to get only one post from post list

$featured = new WP_Query($args);