Yogesh Chauhan's Blog

How to detect the Blog Page in WordPress?

in WordPress on January 31, 2021

We can use Conditional Tags to detect the Blog Page.

It’s not a direct hit but we can make use of is_front_page() and is_home() to detect it.

There is no conditional tag for the blog page.

We have to use both is_home() and is_front_page() to detect this page, but those functions can be misused.

In fact, we can define a static page for the homepage, and another page to display the blog.

This one will return true with is_home() function, even if it’s not the homepage.

Here is what a user can define :

  • a default homepage (with the latest posts)
  • a static homepage and no blog page
  • a static homepage and a blog page

When you use is_home() and is_front_page(), you have to use them in the right order to avoid bugs and to test every user configuration.

This is how we can make use of the Conditional Tags to detect the Blog Page:


if ( is_front_page() && is_home() ) {
  // Default homepage
} elseif ( is_front_page() ) {
  // static homepage
} elseif ( is_home() ) {
  // blog page
} else {
  //everything else
}

Credit: WordPress Dev


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How JavaScript classes allows us to do less typing (syntactic sugar)?JavaScriptHow to add and remove capabilities from a role in WordPress?WordPressHow to get the first element with a class name xyz using JavaScript?JavaScriptOptional arguments, Default parameters and REST parameters in JavaScriptJavaScriptWhat is an API?Miscellaneous3 Types of Arrays in PHPPHPHow to change HTML content on click using JavaScript?JavaScriptHow to activate and deactivate hooks in a WordPress plugin?WordPressHow to get query string values in JavaScript? (URL Manipulation using URLSearchParams)JavaScriptA Step by Step Guide to Make RSS in XML For Any Website or Blog For FreeMiscellaneousSelector Lists and Combinators in SCSS (Sass)SCSSHow to change the Login Logo in WordPress?WordPress