Yogesh Chauhan's Blog

What are Conditional Tags in WordPress?

in WordPress on January 31, 2021

The Conditional Tags are used to change what content is displayed and how that content is displayed. We can also check if that page matches some conditions.

For example, you might want to display a snippet of text above the series of posts, but only on the main page of your blog. With the is_home() Conditional Tag, that task is made easy.

All of the Conditional Tags test to see whether a certain condition is met, and then returns either TRUE or FALSE.

Some of the Conditional Tags can accept parameters as well.

Some of the Conditional Tags examples.

is_home()

We can check when if main blog page is being displayed using this tag.

This is the page which shows the time based blog content of your site, so if you’ve set a static Page for the Front Page, then this will only be true on the Page which you set as the “Posts page” in Administration > Settings > Reading.

is_front_page()

Using this tag we can check when the front of the site is displayed, whether it is posts or a Page.

It returns TRUE

✔ when the main blog page is being displayed and the ‘Settings > Reading ->Front page displays’ is set to “Your latest posts”,

OR

✔ when ‘Settings > Reading ->Front page displays’ is set to “A static page” and the “Front Page” value is the current Page being displayed

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
CROSS JOIN in PostgresPostgresHow to swap images on hover using CSS?CSSHow to embed YouTube or other video links in WordPress?WordPressWhat’s a page re-rendering in React?ReactHow to remove special characters (dash, asterisk etc) from any string in PHP?PHPDifferent Types of Functions in JavaScriptJavaScript