You should be able to do this with just having the front page show blog posts like it does by default. No need to make empty pages and redirect and all that. In the theme file that contains your navigation (quite likely header.php
), look for something that looks like this:
<ul>
<?php wp_list_pages( /* maybe some stuff here */ ); ?>
</ul>
You can add a list item before wp_list_pages()
that points to home, e.g.
<li<?php if ( is_home() ) echo ' class="current_page_item"'; ?>><a href="https://wordpress.stackexchange.com/questions/28226/<?php bloginfo("url'); ?>">Home</a></li>
There’s also a conditional in there that will add the current_page_item
class if you’re on the home page with blog posts.
Related Posts:
- posts page – different lengths of excerpt
- Why do I need to use The Loop on pages (inside page.php etc)?
- how to show all post in my page-grid.php template page
- Multiple loops in same page, without duplicate content
- loop not displaying posts on custom template page
- Single post as homepage?
- Differentiate between posts and pages in search results
- page.php showing loop of posts and not page content
- How can I pass the ID of a post to a page template by clicking a url?
- Multiple loops are not reset
- Switch to page template when using post permalink
- Get Page ID of blog homepage
- How do I stop the loop from repeating in my category template?
- Display Posts on Custom Page
- Multiple Loops Breaking Pages
- Why won’t pagination work?
- WordPress Query Posts From Category Post on Static Page
- Pagination for normal (standard) posts on a page with a custom loop?
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- posts going to 2 pages/categories only show up in 1
- Prevent 404 of Author pages without posts
- How to distinguish pages created by woocommerce?
- Single Sidebar; multiple templates! How?
- Use special template for the first post in the loop
- Is it possible to query a category with specified posts?
- Posts are not showing up on next page.
- My blog “page” used to show a list of posts, but now it’s just showing the page content?
- How to arrange different post categories in template
- Where are my posts linked to? I keep getting a Not Found Error, and I have no single.php page
- how to style an individual page in a category [duplicate]
- The loop: more posts than I want to fit on one page
- custom post type single page template not working
- WordPress “Posts Page” isn’t showing template dropdown
- How do I create a template page to show 3 blog posts?
- When and how will php code in a user made WordPress page be executed?
- What function does the loop of displaying posts?
- Page not loading content – Body archive – page
- Keep post format class with isotope filter
- Display all posts/pages in a multiple selectbox
- Grab next post title in archive page
- Add wp-link-pages to post
- Adding The Post Template Dropdown to WP-Admin
- Where should get_post_meta() go to get $post->ID get_post_meta() is empty and $post->ID & get_the_id() are working
- Posts page template: How can I edit the markup for this?
- 404 error on every post and page other than home
- Allow users to create their own page/s
- how to change the permalink to a specific location?
- How to use extract shortcode in loop?
- some posts being displayed as pages
- Getting posts from multiple users?
- Using Post ID and Page ID in same function
- Loop through posts by each term and exclude duplicate posts assigned to several terms
- Show post if in category
- Adding a category at even positions on main loop with modified pagination
- Displaying categories items among posts
- One of my posts is displayed as page
- Display Post by menu order
- Make Show Notes for Individual Podcast Episodes Easy to Find (multiple URL’s?)
- Make assigning post to a specific category equivalent to assigning it to all categories
- How to mix pages and sub-categories in a url
- Fake Single WordPress Post (Page) Loop
- get next/previous post name
- Get part of a page url
- can’t post immediately
- How can i add new post on new page
- Get post title of faulty link on 404 error page
- Get current post’s child page?
- How can I change the look of a post as is displayed
- Make a custom URL and link to custom Template
- How to display a paginated list of posts from one category on a page? [duplicate]
- How to inject a post within a loop
- wordpress taxonomy results
- Displaying only posts from a certain category on my custom page template
- The next_posts_link() works only with original $wp_query
- Cant retrieve $_POST inside page, just header
- I need to create a page or post hierarchy
- Getting rid of the blog page entirely
- Which hooks are essential for post templates?
- Display the first post’s comments of category in comments.php template
- 1 post, 2 templates
- Home page: using custom fields for posts and pages
- Displaying posts on Homepage
- How to Post to Specific Pages?
- associate posts to a page
- Sort by category and then date?
- Only show posts with image and the correct ammount of posts in loop
- Is there a way to separate wordpress titles from their posts?
- Related posts by searching post tags of single post as terms
- How to display a certain template element only for posts published within certain time range?
- adding custom meta as well as looping through posts
- Loop not allowing infinite scroll after post per page limit
- Customise the appearance of 4 specific post ID’s within the loop?
- Automatically delete default posts and pages on theme install?
- what template-part to call, to have my post in the center of the page?
- Creating / Editing a post from within site template
- WordPress posts loop pagination – first page return 125 posts instead of 10 and the rest return 10
- Woocommerce – custom post type of checkout page
- The post order is different for logged-in and non-logged-in users? [closed]
- Posts and pages not getting published
- Index.php is ordering posts strangely