0

I wanted to insert the blog title into wp_blogs table upon signup. I can't find on the wp-signup.php file where should i do the insert.

Ken
  • 833
  • 2
  • 13
  • 27

1 Answers1

0

You don't need to modify a core file. You should use an appropriate hook for this. Take a look at Plugin API/Action Reference for more details. I think user_register will do the job

Quicksilver
  • 2,546
  • 3
  • 23
  • 37