我已经连续5个小时编程,我的大脑已经停止运作了。
我不记得怎么做了:
我的网站上有一个名为Blog的页面,我需要在该页面上显示我博客上的所有帖子。博客页面使用自定义模板...因此,它不是index.php ...
请帮助我,我迷路了:/
答案 0 :(得分:0)
在模板中包含loop.php。这就是得到并展示帖子的内容。
答案 1 :(得分:0)
要在自定义标记模板上显示博客文章,您可以使用此过程循环,如果有任何帖子并通过the_content函数打印它们。
<?php
if (have_posts()) :
while (have_posts()) : the_post();
the_content();
endwhile;
endif;
?>