由於某種原因,我無法獲得附件顯示,如果我通過$ attachment_id,如果我傳遞一個真實的值像187它的作品。Wordpress WP_Query
我正在使用WpAlchemy和Custom Image Sizes插件。
<section id="new">
<?php $myquery = new WP_Query(array('post_type' => array('post', 'website_gallery'),'showposts' => '2'));
while ($myquery->have_posts()) : $myquery->the_post();
global $custom_metabox;
?>
<div class="latest hentry">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php $website_gallery->the_meta(); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php $website_gallery->the_value('galleryimage');?>" alt="<?php the_title(); ?>">
</a>
<?php echo wp_get_attachment_image($attachment_id, '220x80'); ?>
</div>
<?php endwhile; wp_reset_query(); ?>
</section>
你在哪裏設置$ attachment_id? – 2011-06-17 02:33:19