在我的新wordpress主题中,我为博客帖子制作了一个静态首页和一个子页面,但问题是,这些帖子没有显示出来。如果我在没有静态首页的情况下使用它,则帖子会正常显示。可能有什么不对?
以下是我的博客页面代码:
<?php
/*
Template Name: Blog page
*/
get_header();
?>
<!--parallax section 1-->
<div class="section-one">
<div class="parallax-section-1">
</div>
<div class="container-fluid">
<h1>News</h1>
</div>
</div>
<div class="container-fluid">
<?php if(have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<h6>Posted on <?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?></h6>
<div class ="entry">
<?php the_content(); ?>
</div>
</div>
<?php
endwhile;
else:
?>
<p> Sorry, no posts to display.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
答案 0 :(得分:0)
在“if”之前插入
$args=array(
'post_status' => 'publish',
'posts_per_page' => 4,
'order' => 'ASC'
);
$my_query = new WP_Query($args);