我的Wordpress博客在显示所有帖子的主页上运行良好,但是,当我单击某个类别时,最新的帖子标题将成为主要标题,并且该帖子甚至都不会显示在该类别的博客列表中
我以与我相同的主题监视其他人,并且他们有相同的问题,因此我认为这与原始代码有关。我主题的创建者似乎已经消失,也没有回复我的任何消息。
archive.php
<section id="wp-main-content" class="clearfix main-page title-layout-standard">
<?php do_action( 'naturalfood_before_page_content' ); ?>
<div class="container">
<div class="main-page-content row">
<!-- Main content -->
<div class="content-page <?php echo esc_attr($main_content_config['class']); ?>">
<div id="wp-content" class="wp-content">
<?php get_template_part('templates/layout/archive') ?>
</div>
</div>
答案 0 :(得分:0)
您需要创建存档页面
Give Archive页面名称为“ archive.php”。
归档页面结构如下:
<?php
/*
Template Name: Archives
*/
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
/* Custom Archives Functions Go Below this line */
/* Custom Archives Functions Go Above this line */
</div><!-- .entry-content -->
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>