WordPress没有这样的宏,但它是可以做到的。
如果插件已经安装,您可以Network Activate 因此,它将在网络中的任何博客上可用。
对于带有标题的页面,您需要创建或源代码插件来完成此操作,因为它需要在创建站点后创建。
快速且未经测试的方法:
add_action( \'wpmu_new_blog\', \'wpse_190815\');
function wpse_190815( $blog_id ) {
$page_title = \'Custom Page Title\';
$post_data = array(
\'post_type\' => \'page\',
\'post_title\' => $page_title,
);
//switch to the new blog
switch_to_blog( $blog_id );
//create the new page
$page = wp_insert_post( $post_data );
//go back to the current blog
restore_current_blog();
}
这个应该可以放进去
wp-content/mu-plugins 确保它始终处于加载状态。
希望这有帮助!