wordpress自定义标签get_post_meta(),如何一次检索几个帖子?

时间:2010-12-09 13:00:38

标签: wordpress wordpress-plugin custom-tag

我正在尝试自定义wordpress插件,其中使用了自定义标记“get_post_meta()”。 代码如下:

<?php query_posts('showposts=5'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2>" title="<?php the_title(); ?>">
<?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<?php $gallery = get_post_meta($post->ID, 'Thumbnail', $single = true); ?>
<img src="<?php echo $gallery; ?>">`

我尝试将参数设为false并检索数组值,但它只返回一个值。 但它没有发生。还在the_post()之后尝试使用foreach循环。可以任何人建议我一次有几个帖子。实际上我想要不同的图片网址,这意味着几个$ gallery。

提前致谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

<?php while ( get_post_meta( $post->ID, 'Thumbnail', true ) != '' : ?>
<img src="<?php get_post_meta( $post->ID, 'Thumbnail', true ); ?>" />
<?php endwhile; ?>