如何在 Wordpress 的存档页面上显示所有类别的帖子?

Posted

技术标签:

【中文标题】如何在 Wordpress 的存档页面上显示所有类别的帖子?【英文标题】:How to show posts from all categories on archive page on Wordpress? 【发布时间】:2021-03-03 01:05:56 【问题描述】:

我想在archive.php 页面上显示所有类别的帖子。我制作它的方式只适用于类别页面。例如,如果我访问“myurl/category/test-category/”,该页面可以正常工作,但它只显示来自“测试类别”的帖子。如果我访问“myurl/category/”,它只会返回一个空白页。

我的存档.php:

<?php get_header(); ?>
<div class="custom-container archive-wrapper">
    <?php if(have_posts() ): while (have_posts() ): the_post(); ?>
         <div class="blog-post-archive">
            <div class="img-archive-wrapper d-xl-flex">
                <img src="<?php echo wp_get_attachment_url(get_post_thumbnail_id( $post->ID ), 'medium' ); ?>"  class="blog-image-archive">
                <div class="blog-post-archive-infos">
                    <h2 class="archive-title"><?php the_title(); ?></h2>
                    <span class="post-date-archive"><?php echo get_the_date(); ?></span>
                    <p><?php the_excerpt( ) ?></p>
                    <a href="<?php the_permalink();?>" class="see-more-posts"> Ver mais</a>
                </div>
            </div>
         </div>
         <?php endwhile; else: endif; ?>
     <div class="pagination__links">
    <?php the_posts_pagination( ); ?>
    </div>
  </div>
<?php get_footer(); ?>

【问题讨论】:

您想显示“myurl/category/”上的所有帖子,其中“category”是准确的词,而不是特定的类别,对吧? 是的!我想在页面上显示所有类别,例如“category-1”、“category-2”等 等等,所有类别还是网站所有类别的所有帖子? 糟糕,抱歉。所有类别的所有帖子。 在下面查看我的答案 【参考方案1】:

实际上,Category Templates 仅用于显示已定义类别中的帖子,因此“example.com/category/news”将显示“新闻”类别中的所有帖子,这是所需的行为。

如果您想显示“example.com/category”上的所有帖子,您有两种选择:

只需添加一个名为“类别”的新页面,转到“设置”->“永久链接”,选择“静态页面”并选择您刚刚创建的页面“类别”作为“帖子页面”。它将显示所有类别的所有帖子;

如果您不想创建新页面,请在主题根目录添加文件“page_category.php”,内容为:

<?php get_header(); ?>
<div class="custom-container archive-wrapper">
    <?php
      $uri = array_values(array_filter(explode('/', $_SERVER['REQUEST_URI'])));
      $current_page_number = is_numeric(end($uri)) ? end($uri) : (get_query_var('paged') ? get_query_var('paged') : 1);
      $wp_query = new WP_Query(array( 'post_type' => 'post', 'posts_per_page' => 10, 'paged' => $current_page_number ));
    ?>
    <?php if(have_posts()): while (have_posts()): the_post(); ?>
      <div class="blog-post-archive">
        <div class="img-archive-wrapper d-xl-flex">
            <img src="<?php echo wp_get_attachment_url(get_post_thumbnail_id( $post->ID ), 'medium' ); ?>"  class="blog-image-archive">
            <div class="blog-post-archive-infos">
                <h2 class="archive-title"><?php the_title(); ?></h2>
                <span class="post-date-archive"><?php echo get_the_date(); ?></span>
                <p><?php the_excerpt() ?></p>
                <a href="<?php the_permalink();?>" class="see-more-posts"> Ver mais</a>
            </div>
        </div>
      </div>
    <?php endwhile; wp_reset_postdata(); else: endif; ?>
    <div class="pagination__links">
      <?php
        echo paginate_links( array(
          'total'        => $wp_query->max_num_pages,
          'current'      => max( 1, $current_page_number ),
        ) );
      ?>
    </div>
  </div>
<?php get_footer(); ?>

而且,在你的functions.php上:

add_action('template_include', function( $template ) 
  $url_path = trim(parse_url(add_query_arg(array()), PHP_URL_PATH), '/');
  if ( preg_match('/^category(\/page(\/[0-9]+)+)?$/', $url_path) ) 
     // load the file if exists
     $new_template = locate_template('page_category.php');
     if ( '' != $new_template ) 
      return $new_template ;
    
  
  return $template;
);

您也可以通过Page Template 进行。

【讨论】:

以上是关于如何在 Wordpress 的存档页面上显示所有类别的帖子?的主要内容,如果未能解决你的问题,请参考以下文章

在 Wordpress Datewise 中为特定类别创建存档

突出显示存档中的类别 - WordPress

Wordpress:如何删除默认 Wordpress 日历上的存档链接

突出显示单个页面的 wordpress 导航链接

WordPress中的自定义博客存档页面

链接到显示所有帖子的存档页面