woocommerce:加入帖子和产品类别

时间:2016-01-27 10:44:26

标签: php wordpress woocommerce

我正在开发一个电子商务网站,我想知道是否可以为帖子和woocommerce产品提供相同的类别?我想从特定类别获得文章和产品。我试过这个https://wordpress.org/support/topic/relating-a-post-to-a-product-category,这会使产品类别​​出现在帖子中,但我不知道如何在帖子循环中显示它们。

<article <?php post_class(); ?>>
  <header>    
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

    <?php the_tags('<ul class="entry-tags"><li>','</li><li>','</li></ul>');
    the_category( ' ' ); ?>
  </header>

<div>
   <?php the_excerpt(); ?>
    <?php if ( has_post_thumbnail() ) { 
    the_post_thumbnail();
    } 
    ?>
</div>

</article>

提前致谢。

1 个答案:

答案 0 :(得分:0)

结帐https://wordpress.org/support/topic/relating-a-post-to-a-product-category

主要思想是修改分类法以允许用于产品和帖子的类别,或者更好地创建新的分类法以防止污染原始分类法。