<?php $loop = new WP_Query( array( 'post_type' => 'topics','taxonomy' => 'info','term' => 'event','posts_per_page' => 1, 'orderby' =>rand ) ); while ( $loop->have_posts() ) : $loop->the_post(); ?> // ここから下はカスタムフィールドテンプレートで指定した画像を表示するタグ <?php $attach_id = get_post_meta($post->ID,"メイン画像",true); $image_info = wp_get_attachment_image_src( $attach_id , 'full' ); list( $url, $w, $h) = $image_info; $h = intval(200 * ( $h / $w )); $alt = get_post_meta($attach_id , '_wp_attachment_image_alt', true); ?> <li><a href="<?php the_permalink() ?>"><img src="<?php echo $url; ?>" alt="<?php echo $alt; ?>" width="88px" /></a></li> // ここまで画像 <?php endwhile;wp_reset_query(); ?>
‘orderby’ =>randがランダムに表示する内容です。