• I am currently working on the Web Security Tools plugin and would like to add an options page. Doing this for non-multisite was fairly easy.

    add_options_page('Web Security Tools', 'WebSec Options', 'manage_options', 'websecuritytools-admin-options-page', 'websecuritytools_admin_options_page');

    The problem is that these security settings are network wide and while blog owners (users) can and should be able to run security scans they should not be able to disable or change critical features. Only the network administrators should have that capability so I would like to add it to the network administrator menus when multi-site is enabled. I have been unable to find any way of doing so.

    These configuration settings are not going into the database but are getting serialized into a data file which is recognized by the library providing the features.

    Can someone explain how to add an options page to the network administration menus?

  • The topic ‘Adding network admin options page’ is closed to new replies.