kaioe
6/26/2017 - 3:02 AM

wordpress: Right way to display or alter content

This is the only (right) way to display or alter content with your homepage and your blog page.

if ( is_front_page() && is_home() ) {
  // Default homepage

  } elseif ( is_front_page()){
    //Static homepage

    } elseif ( is_home()){

      //Blog page

      } else {

        //everything else

      }