你可以通过瞄准get_option(\'show_on_front\');
以下代码可能会有所帮助:
function themename_after_setup_theme() {
$site_type = get_option(\'show_on_front\');
if($site_type == \'posts\') {
update_option( \'show_on_front\', \'page\' );
update_option( \'page_for_posts\', \'page-name\' );
}
}
add_action( \'after_setup_theme\', \'themename_after_setup_theme\' );
这将仅在主题激活时运行,请记住将页面名称更改为要设置为主页的页面。
这没有经过测试,但以前在类似的项目中使用过