• function sp_admin_menu() {
    
    add_menu_page(
    
    'sp_options',
    'application',
    );  <------------says syntax error.
    
    }
    
    add_action( 'admin_menu', 'sp_admin_menu' );
    
    function sp_options_page()
    {
    require_once dirname( _FILE_ ). "/adminpages/options.php";
    }
    
    ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘syntax error’ is closed to new replies.