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();
});

プログラムのメモとか日常のこととか
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();
});