douyulv6921 2018-11-27 19:23
浏览 41
已采纳

为什么我在wordpress中的类别模板返回的帖子不属于相关类别?

I'm having an issue with my Category template. With a number of categories it's echoing posts that aren't in the category in question. I've checked the posts and categories in my WPAdmin dashboard, they're correct; the problem lies with my code.

Side note: this loop always returns every post in the category, and then some. So it's not missing any, it's just including some that don't belong.

<?php
$categories = get_the_category(); $category_id = $categories[0]->cat_ID;
// the query
$wpb_all_query = new WP_Query(array('post_type'=>'post', 'post_status'=>'publish', 'posts_per_page'=>-1, 'cat' => $category_id )); ?>
    <?php if ( $wpb_all_query->have_posts() and !empty($category_id) ) : ?>
    <!-- the loop -->
    <?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
    <div>
      <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
      <p><br/><?php echo get_the_date('l, F j, Y'); _e(' by ');?><a href="<?php echo home_url(); ?>/author/<?php echo the_author_meta('nicename'); ?>"><?php echo get_author_name(); ?></a></p>
      <p><br/><?php _e('Categories: '); echo the_category( '/' ); ?></p>
      <?php if ( has_post_thumbnail() ) {the_post_thumbnail();} ?>
      <span><?php echo apply_filters( 'the_content', wp_trim_words( strip_tags( $post->post_content ), 55 ) ); ?><br/><a href="<?php echo the_permalink();?>">Continue Reading ></a></span>
      <p><br/><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
      <p><?php echo get_the_date('l, F j, Y'); _e(' by ');?><a href="<?php echo home_url(); ?>/author/<?php echo the_author_meta('nicename'); ?>"><?php echo get_author_name(); ?></a></p>
    </div>
<?php endwhile; ?>
<!-- end of the loop -->
<?php wp_reset_postdata();  ?>
<?php else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
  • 写回答

1条回答 默认 最新

  • dsg24156 2018-11-30 18:58
    关注

    Alright, I have the solution. I was getting the post outside the loop, so it was defaulting to the first post. Most posts on this blog have multiple categories, and the ordering wasn't always listing the desired category first. This solution guarantees the category is grabbed based on the page loaded, rather than just the first category of the post:

    <?php
    $url = $_SERVER['REQUEST_URI'];
    preg_match('/\/category\/(.+)\/.*/', $url, $matches);
    $category_slug = $matches[1];
    $category_id_actual = get_category_by_slug($category_slug)->term_id;
    // the query
    $wpb_all_query = new WP_Query(array('post_type'=>'post', 'post_status'=>'publish', 'posts_per_page'=>-1, 'cat' => $category_id_actual )); ?>
    <?php if ( $wpb_all_query->have_posts() and !empty($category_id_actual) ) : ?>
      <!-- the loop -->
      <?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
          <div>
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
            <p><br/><?php echo get_the_date('l, F j, Y'); _e(' by ');?><a href="<?php echo home_url(); ?>/author/<?php echo the_author_meta('nicename'); ?>"><?php echo get_author_name(); ?></a></p>
            <p><br/><?php _e('Categories: '); echo the_category( '/' ); ?></p>
            <?php if ( has_post_thumbnail() ) {the_post_thumbnail();} ?>
            <span><?php echo apply_filters( 'the_content', wp_trim_words( strip_tags( $post->post_content ), 55 ) ); ?><br/><a href="<?php echo the_permalink();?>">Continue Reading ></a></span>
            <p><br/><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
            <p><?php echo get_the_date('l, F j, Y'); _e(' by ');?><a href="<?php echo home_url(); ?>/author/<?php echo the_author_meta('nicename'); ?>" class="authorname"><?php echo get_author_name(); ?></a></p>
            <div style="float:right;"></div>
          </div>
      <?php endwhile; ?>
      <!-- end of the loop -->
      <?php wp_reset_postdata();  ?>
    <?php else : ?>
      <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
    <?php endif; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵