将帖子添加到类别

时间:2018-01-07 21:46:57

标签: wordpress

我的问题是关于postscategory。用于向某个类别添加帖子的正确php模板是什么,以便为特定类别显示新帖子?

所以,我有single.php,我有category.php。我是否需要archive.php? 例如,我想在我的菜单中放置一个类别,然后单击该类别以查看帖子,但即使我将新帖子链接到该类别,也不显示任何类别。实际上,我可以单独查看我的帖子,但如果我转到类别页面则不能。 我该怎么做才能找到它?

1 个答案:

答案 0 :(得分:0)

我所做的是将“类别”放入我的自定义菜单。创建了category.php和single.php。然后为我放的类别文件      `

get_header(); ?>


        <?php while ( have_posts() ) : the_post(); ?>

  <header class="entry-header" style="padding-top:20%;">


 </header>
<div class="date"><?php the_date(); ?></div>
    <div class="author"><?php the_author(); ?></div>
  <div class="entry-content w3-hover-grey" style="height:100%; border: 
solid;  " >
<?php the_excerpt(); ?>

 </div><!-- .entry-content -->
<a href="<?php echo get_permalink(); ?>"> Показать больше...</a>

<?php endwhile; // end of the loop. ?>
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); 
?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); 
?></div>

<?php get_footer(); ?>`

这适用于我,我可以将帖子添加到类别页面。也许不是这样做的正确方法,但它对我有用。