
调用分类的类型:
<?php $getQb = get_queried_object(); ?>
<?php echo $getQb->name; ?>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post() ?>
<div style=" border:solid 1px #333;padding:3px;margin-bottom:15px">
<?php the_title(); ?><br>
<?php the_content(); ?><br>
<?php the_terms(get_the_ID(),'product_cate'); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>