Pagination of multiple recent post blog
<div class="blog-section"> <div class="blog-listing-wrapper cell-wrapper"> <div class="post-listing clearfix"> {% set blog_one_posts = blog_recent_posts('6126215542', 200) %} <!-- sets a variable for a the 5 most recent posts of my default COS blog --> {% set blog_two_posts = blog_recent_posts('6126300566', 200) %} <!-- sets a variable for a the 5 most recent posts of my blog id 47082700. You can find the blog id in the URL of the blog dashboard for a particular blog--> {% set blog_three_posts = blog_recent_posts('6130453958', 200) %} {% set blog_four_posts = blog_recent_posts('6131348719', 200) %} {% set all_posts = (blog_one_posts + blog_two_posts + blog_three_posts + blog_four_posts) | sort(true, false, 'publish_date') %} <!-- combines the two variables into a single variable and sorts them by publish date. ...
Comments
Post a Comment