How to show all WordPress Posts on a Unique Page
In WordPress, the archive pages come inbuilt for every tag, category, date, and author. However, several web site owners like better to have custom archives page for their web site. The archive page sometimes exhibits common posts, display the date based mostly archive, display tags, list categories, etc. Some blog owners like better to display all the posts title on one page.
Using Display Post Shortcode Plugin Displaying all the WordPress Post on One Page
Step 1: On the WP dashboard Select plugins widget . Then Select for the plugins widget & look for plugin box . Search for Display Post Shortcode.
Step 2: After you find these plugin, Install the Plugin Display Post Shortcode.
Step 3: Activate the Plugin.
Once the plugin is activated it’s ready to be used as there are not any settings to be configured.
Step 4: Create a new page by going to your WP admin dashboard then from left side navigation bar select Pages and Add New
Type a title for the New Page, like Archives, you’ll even name it as per choice.
Step 5: In the page Paste the following shortcode
[display-posts posts_per_page="6" order="DESC"]
Using this shortcode on the page wherever you want to show all the post titles can list the titles in an chronological order. Here we’ve set the posts per page limit “6” you’ll set the limit as per the no: of posts, you want to show on the page.
If you would like to show additional post, for example: “10”, then set posts posts_per_page as “10” within the shortcode
[display-posts posts_per_page="10" order="DESC"]
Even the chronological order are often reversed which can displace older post initial i.e. so as order type “ASC”
[display-posts posts_per_page="10" order="ASC"]