我有下面的循环工作,因为我想它,但我需要\'活动家\'列表项包括<?php the_post_thumbnail(); ?>
.
写这篇文章的最佳方式是什么?
<?php
$terms = array(\'news\', \'activists\', \'resources\', \'posts\' );
if ( !empty( $terms ) && !is_wp_error( $terms ) ){
foreach ( $terms as $term ) {
$my_query = new WP_Query(\'posts_per_page=5&post_type=\'.$term);
while ($my_query->have_posts()) : $my_query->the_post();
echo \'<li class="item \' . $term . \'">\'; ?>
<a href="<?php the_permalink(); ?>"><strong><span><?php echo the_title(); ?></span></strong></a>
<?php echo \'</li>\';
endwhile; wp_reset_query();
}
}
?>
提前谢谢。