What is wrong with using add_option with Multisite instead of add_blog_option in a plugin

add_blog_option ultimately calls add_option itself to add the option after switching the context to the supplied blog ID. the difference is that add_option will only work in the context of the current blog where add_blog_option lets you specify a blog ID that may be different than the current context.

Leave a Comment