Hi Guys,
I'm looking for some way to hook/override this function:
function install_blog_defaults($blog_id, $user_id) { ... }
I want to hook/override this function, because I want to disable the "Hello World!" post and comment that are automatically created as soon as a new blog is created. I know that this function is responsible for:
- Create the default links;
- Create the first post (Hello World!);
- Create the first comment.
I don't want to change this function directly (I mean, edit or put comments in wpmu-functions.php), because I want to be able to update the WordPress without care about any hard code.
Thank you guys!