add_filter( "home_template", function( $tmpls ) {
$tmp = get_page_template_slug( get_option( 'page_for_posts' ) );
if ( ! empty( $tmp ) )
return locate_template( $tmp );
return $tmpls;
} );
add_filter( "home_template", function( $tmpls ) {
$tmp = get_page_template_slug( get_option( 'page_for_posts' ) );
if ( ! empty( $tmp ) )
return locate_template( $tmp );
return $tmpls;
} );