出于某种原因,如果我传入$ attachment_id,如果我传递了类似于187的实际值,我就无法获得显示的附件。
我正在使用WpAlchemy和自定义图像大小插件。
<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>
答案 0 :(得分:0)
我认为您可以使用get_post()
功能获取附件ID。 get_post()
需要一个数组作为参数,该数组可以是这样的:
$args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID );
由于您需要附件,请确保使用'post_type' => 'attachment'
。
然后你可以这样做:
$attachments = get_post( $args );
if( $attachments ) {
foreach( $attachments as $attachment ) {
echo wp_get_attachment_image( $attachment->ID, '220x80' );
}
}
根据您的需要调整代码。希望它对你有用。
退房:http://codex.wordpress.org/Template_Tags/get_posts#Show_attachments_for_the_current_post