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
archive-page conditional front-page single-page tags