Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whats the url that displays all posts in wordpress?

Tags:

php

wordpress

I simply want a link to my blog archives. They are just normal posts, but I cannot seem to find the right url for them to add to my menu.

like image 820
Claire Avatar asked May 15 '12 14:05

Claire


People also ask

How do I see all posts in WordPress?

List All WordPress Posts on Your Homepage. If you'd like all your posts displayed on your front page along with the content of the posts, you can easily do that by going to the Reading Settings screen (Settings > Reading) and changing the number of posts to show to something more than the number of posts you have.

How do you add a link to all posts in WordPress?

It's easy to add links to the content on your own website. Simply select the posts or pages you want to add to your menu on the left hand side, then click the 'Add to Menu' button. WordPress will automatically link to your selected posts and pages. You can rearrange the entries using drag and drop.

How do I show post content in WordPress?

Using Default WordPress Settings Firstly, login to your WordPress admin dashboard, then click on 'Settings > Reading'. Next, select the “Your latest post” option under the 'Homepage displays' settings. After that, click on save changes. This is the easiest method of showing posts on your home page in WordPress.

How do I get the full post on my WordPress homepage?

Go to appearance > Theme editor > Select your theme > scroll down to “template-parts” select the “excerpt. php” file. What is this? Change “excerpt” to “content” and your blog will show full posts on the home page.


2 Answers

right url for them to add to my menu.

http://yourwebsite.com/?post_type=post

like image 144
Abhishek kushwaha Avatar answered Oct 07 '22 00:10

Abhishek kushwaha


You don't have to necessarily use a category to every post.

Actually the file to list all posts of any category and date is the index.php. You just write 'the loop' as told on codex.

So if you changed your index.php to make it as a fancy page and not the post list only, now you're trying to create another page to do that for you.

So, if you follow me, you're doing this the wrong way. What you should do is to create a separate page and assign it as the home page of your blog. It would then free the index.php file for you to use it as the blog list, as it is by default.

like image 24
Walrus Avatar answered Oct 07 '22 00:10

Walrus