dane-m
9/10/2013 - 10:23 AM

Show posts on front page with front-page.php if the user has specifically selected show posts in the dashboard settings.

Show posts on front page with front-page.php if the user has specifically selected show posts in the dashboard settings.

if ( 'posts' == get_option( 'show_on_front' ) ) { // if user has selected posts to show on the front page
    include( get_home_template() ); // use a post enabled home page template
} else {
    // Custom static front-page markup goes here
}