有两种选择:
// If the current page is the blog posts index,
// but is NOT the site front page
if ( is_home() && ! is_front_page() )
或
// If the current page has the ID of the
// page assigned to display the blog posts index
if ( is_page( get_option( \'page_for_posts\' ) )