您可以使用template_redirect 行动挂钩。
将以下代码添加到函数中。php文件:
if ( !function_exists( \'force_index_template\' )) {
function force_index_template() {
if ( is_page( page_id ) ) { // Replace page_id with the page id of the home page
global $template;
$template = get_template_directory() . \'/index.php\';
include( $template );
exit;
}
}
add_action( \'template_redirect\', \'force_index_template\');
}
Note: Make sure to replace page_id with the id of the home page.
使用的Wordpress函数:is\\u page,add\\u action