我試圖通過使用模板部分中的以下代碼在關於頁面上的'關於我們'的段落下顯示博客文章。但是,它只是將實際頁面的標題和日期信息作爲我編輯頁面的日期返回。如何在Wordpress的頁面部分顯示博客?
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="post">
<header>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="post-details">
<i class="fa fa-user"></i><?php the_author_posts_link(); ?>
<i class="fa fa-calendar"></i> <?php the_time('F jS, Y'); ?>
<i class="fa fa-folder-open-o"></i> <a href=""><?php the_category(', '); ?></a>
<i class="fa fa-comments"></i><a href=""><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></a>
</div><!-- post details -->
</header>
<div class="post-excerpt">
<p><?php the_excerpt(); ?> <a href="post.html">continue reading</a></p>
</div><!-- post-excerpt -->
<hr>
</article><!-- end article -->
<?php endwhile; else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
我需要什麼代碼才能將我的實際博客帖子插入此部分?
你必須在這裏使用自定義的WP_Query來拉帖子作爲第二個循環... https://codex.wordpress.org/Class_Reference/WP_Query查看第三個例子,多個循環。 – Mohsin