大概template_include
过滤器将为您完成工作。沿着这些路线,
function prefix_another_front_page_template( $template ) {
if ( is_front_page() ) {
$another_front_page_template = \'something.php\'; // adjust as needed
$new_template = locate_template( array( $another_front_page_template ) );
if ( !empty( $new_template ) ) {
return $new_template;
}
}
return $template;
}
add_filter( \'template_include\', \'prefix_another_front_page_template\', 99 );