根据Wordpress中选定的自定义分类法显示自定义帖子

时间:2017-03-29 15:54:59

标签: wordpress filter custom-post-type categories custom-taxonomy

在我正在构建的当前网站中,我构建了以下功能。

目前的情况是为了更好地理解这个问题。

有一个名为博客的页面。此页面显示列表中的所有博客(帖子)。帖子有所有类别。用户可以选择类别。用户点击后,用户将转到category.php并查看具有该特定类别的所有帖子。

我想创建相同的场景,而不是使用自定义帖子类型。我有一个模板部分; '提供一览的template.php'

offer-list-template.php(这里我得到所有的优惠并展示它们);

  <?php
      // set up or arguments for our custom query
      $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
      $query_args = array(
        'post_type' => 'Offers',
        'posts_per_page' => 10,
        'paged' => $paged
      );
      // create a new instance of WP_Query
      $the_query = new WP_Query( $query_args );
    ?>

<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // run the loop ?>
  <?php

   //$objectData is used in post-listing-item.php

    $objectData->title = get_the_title($post);
    $objectData->content = get_the_content($post);
    $objectData->permalink = get_the_permalink($post);
    $objectData->thumbnail = get_the_post_thumbnail($post);
    $objectData->posttype = get_post_type($post);

    include(locate_template('template-parts/post-listing-item.php'));
  ?>
<?php endwhile; ?>

在同一个文件中,旁边显示了类别。 offer_category 是分类标本。

  <?php $terms = get_terms( 'offer_category' );
    foreach ( $terms as $term ) {

        // The $term is an object, so we don't need to specify the $taxonomy.
        $term_link = get_term_link( $term );

        // If there was an error, continue to the next term.
        if ( is_wp_error( $term_link ) ) {
            continue;
        }

        // We successfully got a link. Print it out.
        echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a><span>('. $term->count . ')</span></li>';
    }
    ?>
    </ul

结果是:

enter image description here

如果用户点击类别,则转到:taxonomy-offer-category.php(taxonomy-slug.php)

在这里,我需要显示具有所选类别的帖子(post_type-&gt;商品)。

注册自定义帖子类型:

//Register Custom post type for Offers.
function create_posttype_offer() {
  $args = array(
    'labels' => array(
      'name' => __('Offers', ''),
      'singular_name' => __('Offer'),
      'all_items' => __('All Offers'),
      'add_new_item' => __('Add New Offer'),
      'edit_item' => __('Edit Offer'),
      'view_item' => __('View Offer')
    ),
    'public' => true,
    'has_archive' => true,
    'rewrite' => array('slug' => 'Offers'),
    'show_ui' => true,
    'show_in_menu' => true,
    'show_in_nav_menus' => true,
    'capability_type' => 'page',
    'supports' => array('title', 'editor', 'thumbnail'),
    'exclude_from_search' => true,
    'menu_position' => 70,
    'has_archive' => true,
    'menu_icon' => 'dashicons-star-filled'
    );
  register_post_type('Offers', $args);
}
add_action( 'init', 'create_posttype_offer');

// Register Custom Categoeries for Custom Post Type Offers
function taxonomies_offer() {
$labels = array(
    'name'              => _x( 'Categories', 'taxonomy general name' ),
    'singular_name'     => _x( 'Category', 'taxonomy singular name' ),
    'search_items'      => __( 'Search Categories' ),
    'all_items'         => __( 'All Categories' ),
    'parent_item'       => __( 'Parent Category' ),
    'parent_item_colon' => __( 'Parent Category:' ),
    'edit_item'         => __( 'Edit Category' ),
    'update_item'       => __( 'Update Category' ),
    'add_new_item'      => __( 'Add New Category' ),
    'new_item_name'     => __( 'New Category' ),
    'menu_name'         => __( 'Categories' ),
    );

$args = array(
    'labels' => $labels,
    'hierarchical' => true,
    );

register_taxonomy( 'offer_category', 'offers', $args );
}
add_action( 'init', 'taxonomies_offer', 0 );

当我使用默认的帖子类型并且我调用具有以下代码的category.php时,将显示具有所选类别的帖子。但是使用自定义帖子类型,我无法找到管理它的方法。

  <?php if (have_posts() ) : while ( have_posts() ) : the_post(); // run the loop ?>
    <?php

     //$objectData is used in post-listing-item.php

      $objectData->title = get_the_title($post);
      $objectData->content = get_the_content($post);
      $objectData->permalink = get_the_permalink($post);
      $objectData->thumbnail = get_the_post_thumbnail($post);
      $objectData->posttype = get_post_type($post);

      include(locate_template('template-parts/post-listing-item.php'));
    ?>
  <?php endwhile; ?>

这是上市后项目(查看)

<article class="post-item">
     <figure>
       <?php echo $objectData->thumbnail ?>
     </figure>

     <div class="content">
       <a href="<?php echo $objectData->permalink ?>">
           <h2><?php echo $objectData->title ?></h2>
       </a>

       <p><?php echo $objectData->content ?></p>

       <div class="read-more-button">
         <a href="<?php echo $objectData->permalink ?>">read more
         <span>
           <svg class="next-arrow"><use xlink:href="#next-arrow" /></svg>
         </span>
         </a>
       </div>
     </div>
 </article>

2 个答案:

答案 0 :(得分:0)

通过理解,您必须通过以下代码查询是否要加载所有自定义分类法:

$terms = get_terms( 
        array(
            'taxonomy' => 'offer_category',
            'hide_empty' => false,
            )
        );  

foreach ($terms as $term){
     $args = array(
           'post_type' => 'Offers',
           'tax_query' => array(
                                 array(
                                     'taxonomy' => 'offer_category',
                                     'field'    => 'slug',
                                     'terms'    =>  $term->slug,
                                  ),
                          ),
             );
      $query = new WP_Query($args);
      if($query->have_posts()): while($query->have_posts()): $query->the_post();   

            the_title();
            the_content();
      endwhile;
      wp_reset_postdata();
      endif;
 }

希望这适合你

答案 1 :(得分:0)

我找到了它!

我从网址获取了分类和slug,并在查询中使用了它。

  <?php

     $term_slug = get_query_var( 'term' );
     $taxonomyName = get_query_var( 'taxonomy' );

      $the_query = new WP_Query( array(
        'post_type' => 'offers',
        'tax_query' => array(
            array (
                'taxonomy' => $taxonomyName,
                'field' => 'slug',
                'terms' => $term_slug,
              )
            ),
          ));
      ?>

        <ul>
          <?php while($the_query->have_posts()) : $the_query->the_post(); ?>
            <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
          <?php endwhile; wp_reset_query(); ?>
        </ul>