我试图在我的网站首页创建的一个群体中显示最近的两篇帖子。
指数html:
<div id="blog">
<h1>
Post title 1
</h1>
<p>
Description
</p>
<button>
Read More
</button>
<h1>
Post title 2
</h1>
<p>
Description
</p>
<button>
Read More
</button>
</div>
我希望
Post title 1
和
Description
当管理员添加新帖子时,将自动更新每个帖子的,最近的帖子将显示在首页上。我安装了
insert php 为了在html页面中添加php代码,我编写了以下代码片段,以测试我是否能够从博客中获得帖子:
[insert_php]
if ( have_posts() ) :
while ( have_posts() ) : the_post();
echo "test successful";
endwhile;
else :
echo wpautop( \'Sorry, no posts were found\' );
endif;
[/insert_php]
但我有
Sorry, no posts were found
然而,我在我的网站的博客页面上有一些帖子。我怎样才能在头版显示最新的帖子?