The question:
I see the following code a lot in index.php files. I understand that is_front_page()
returns true when viewing the Site Front Page (whether displaying the blog posts index or a static page), while is_home()
returns true when viewing the Blog Posts Index (whether displayed on the front page or on a static page). I am still somewhat stumped about the use of the following code –
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
Any explanation of why this piece of code is so popular is greatly appreciated.
The Solutions:
Below are the methods you can try. The first solution is probably the best. Try others if the first one doesn’t work. Senior developers aren’t just copying/pasting – they read the methods carefully & apply them wisely to each case.
Method 1
This will display the title of the page when a static page is set to show posts.
E.g.
I show posts on my homepage…
It’ll do nothing.
If I, say, show posts on page titled News…
It’ll show News in H1.
This is used so that the title of the page is shown, whenever posts are shown on a page, but nothing when blog posts are shown on the front page (home page).
We do it because if it’s on home page… it will show the title of the first post, making it appear twice (once at the top in H1 and again when posts are looped through).
Method 2
Here is how to do it right:
if ( is_front_page() && is_home() ) {
// Default homepage
} elseif ( is_front_page()){
// Static homepage
} elseif ( is_home()){
// Blog page
} else {
// Everything else
}
This is the only (right) way to display or alter content with your homepage and your blog page.
Method 3
I am not sure about “popular”, it doesn’t seem so to me (but then I don’t look at that many themes).
You seem to grasp fine what each conditional does, so this shouldn’t be confusing to you. This combines conditions to check that blog index is being displayed and it’s not at the front page.
Ah, the reason for single_post_title()
I would guess is that it displays title for $wp_query->queried object
(set up by main query as current context), rather than $post
global (set up by iterating loop).
In some circumstances these will be same, but not in such case as condition checks for. The loop will contain posts, but queried object will be page (unless I am mixing things up :).
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0