Wordpress博客帖子没有显示在custum主题中

时间:2015-05-26 13:32:57

标签: php wordpress woocommerce woothemes

我正在Woocommerce网站上工作,我正在使用Mystile(自定义)主题。我添加了一个页面名称博客,并想在这里显示所有帖子,我该怎么做。我没有使用静态页面,所以设置 - >阅读对我不起作用。我还尝试了Page Attribute'Blog'(template-blog.php是Mystile主题中的默认文件),但它不起作用。

2 个答案:

答案 0 :(得分:0)

您需要遍历帖子:

if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>

然后以您想要的格式打印文章..

答案 1 :(得分:0)

确保您使用的是WordPress循环? https://codex.wordpress.org/The_Loop