Creating a Page of Posts
Try this code in your page-blog.php to display list of posts $paged = get_query_var(‘paged’) ? get_query_var(‘paged’) : 1; $args = array( ‘post_type’ => ‘post’, //Change this with your post type ‘posts_per_page’ => 10, //No. of Pages to show ‘offset’ => 0, //excluding the latest post if any ‘paged’ => $paged //For Pagination ); $loop = … Read more