示例页面模板代码:
- <?php
- //template name:产品测试
- $args = array(
- ‘post_type’ => ‘product’,
- ‘tax_query’ => array(
- array(
- ‘taxonomy’ => ‘product_category’,
- ‘field’ => ‘slug’,
- ‘terms’ => ‘coolwp’
- )
- )
- );
- $products = new WP_Query( $args );
- if( $products->have_posts() ) {
- while( $products->have_posts() ) {
- $products->the_post();
- ?>
- <h1><?php the_title() ?></h1>
- <div class=’content’>
- <?php the_content() ?>
- </div>
- <?php
- }
- }
- else {
- echo ‘暂无产品!’;
- }
- ?>
Leave a Reply