Wordpress提供了一个功能update_option 在网络多站点中创建新博客时,以默认编程方式设置静态页面。
function my_new_blog_settings($blog_id, $user_id) {
// set static front page in general settings
update_option( \'show_on_front\', \'page\', true);
// set the static page based on page ID
update_option( \'page_on_front\', $page_id, true);
}
可以使用操作“wpmu\\u new\\u blog”调用上述给定代码
add_action(\'wpmu_new_blog\', \'my_new_blog_settings\', 10, 2);