Unless there is already a way to do this, how could I make it so I could limit the number of blogs a user can create? I dont want them to be able to create unlimited blogs.
Any easy way?
Unless there is already a way to do this, how could I make it so I could limit the number of blogs a user can create? I dont want them to be able to create unlimited blogs.
Any easy way?
Take a look at how the function get_users_blogs() work, use that but change it to count the blog instead of list them, and perform a check at the top of wp-signup.php. if they have too many, kick out with a die and state why there's an issue. If they don't, display the rest of the page.