Support

Account

Home Forums Add-ons Options Page Problem with Creating New Menus? Reply To: Problem with Creating New Menus?

  • Try setting up an action to run your code, this is usually how I add them.

    
    add_action('init', 'add_my_options_pages');
    function add_my_options_pages() {
        // put your code from above in this function
    }