我使用wordpress。 在我使用bootstrap的自定义模板中,我想在其自己的分类法下创建一个taxomies和相关帖子的列表,如图中所示。
<?php
$loop = new WP_Query( array(
'post_type' => 'altri_prodotti',
'posts_per_page' => -1
) );
if ( $loop->have_posts() ) :
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="col-lg-4 col-md-6">
<h2><?php echo get_the_terms( 'category' ); ?></h2>
<article class="vu_menu-item clearfix">
<a href="<?php echo get_the_post_thumbnail_url(); ?>">
<span class="vu_menu-item-img">
<?php the_post_thumbnail(); ?>
</span>
<h2><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
</article>
</div>
<?php endwhile; ?>
<?php endif;
wp_reset_postdata();
?>