wordpressでfront-page.phpやhome.phpがあるときに2ページ目をindex.phpに変更する

add_action('template_include',function($template){
if(!is_front_page()){return $template;}
$paged = get_query_var('paged', false);
if(!$paged){return $template;}
return get_index_template();
});