I’m creating an additional WordPress Network admin page, and I need to store some system-wide option.
The good thing that a config file will be generated, so no access is required from the child blogs, but the question is: how to store options to Network Admin, and where will they be stored in the database?
Thanks,
Peter
Use
add_site_option()
andupdate_site_option()
. You can find these functions inwp-includes/functions.php
.