Reputation: 4069
I am working on a Woocommerce site, and i am using Mystile(customize) theme for it. I added a page name Blog and want to show all the post here, how do i do this. I am not using static pages so Setting -> Reading will not work for me. I also tried Page Attribute 'Blog'(template-blog.php a default file in Mystile theme)but it's not work.
Upvotes: 0
Views: 56
Reputation: 6174
Make sure you are using WordPress Loop?? https://codex.wordpress.org/The_Loop
Upvotes: 0
Reputation: 1
You need to iterate through the posts:
if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
Then print the articles in the format you want..
Upvotes: 0