Categories
WordPress

Все подряд

Сomments

if ( comments_open() || get_comments_number() ) :
    comments_template();
endif;

Conditional Tags

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

 

Leave a Reply