【发布时间】:2016-06-23 05:08:10
【问题描述】:
我正在 wordpress 中进行主题集成。我创建了 home.php(模板页面)并从后端选择(用于前端页面)。 现在我想在首页显示帖子。我将以下代码用于在首页显示帖子。但代码不起作用。我错在哪里? 这是我的代码
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
【问题讨论】:
-
你能粘贴代码吗?我想你忘记添加代码了。
-
@Tejas Shah : 这是我的代码
标签: wordpress wordpress-theming