如何防止WP MU上的第一篇帖子和第一条评论?

时间:2014-02-20 作者:1.21 gigawatts

当用户创建新博客时,会同时创建一篇新文章和一条新评论。有没有办法禁用此功能?

1 个回复
最合适的回答,由SO网友:Steven Jones 整理而成

我通常只是在上运行一个函数wpmu_new_blog - 最好加入mu-plugins

function wpse_wpmu_remove_default_content($blog_id, $user_id, $domain, $path, $site_id, $meta) {

  if ( !current_user_can(\'manage_network\') )
    return;

  switch_to_blog($blog_id);

  // Remove the default post & page
  wp_delete_post(1, true);
  wp_delete_post(2, true);

  // Remove the first comment
  wp_delete_comment( 1, true );

  restore_current_blog();
}

add_action( \'wpmu_new_blog\', \'wpse_wpmu_remove_default_content\' );

结束

相关推荐

WordPress和MultiSite,正确的选择?

我即将为一个非营利组织创建一个网站,我需要它成为一个多站点平台。我不知道Worpress,但我知道有一个多站点选项。因此我想知道Wordpress是否是正确的解决方案。。。因此,我需要支持以下内容:[1 platform, 1 community]<单一用户群和SSO(每个站点1次登录)[several sites, several looks]<每个网站都需要有自己的风格(颜色、字体、图像……基本上只有css imo)[an accurate permission system]<每个