Add submenus to Theme options menu

My theme currently has a single menu on the left hand sidebar of WP admin. I want to include submenus on that menu.

How can I add, for example, a single submenu item to the “Theme Options” menu below?

add_menu_page(
    "My Theme Options", 
    "Theme Options", 
    'edit_themes', 
    basename(__FILE__), 
    'my_admin', 
    get_bloginfo('template_directory') .'/img/favicon.png'
    );

Related posts

Leave a Reply

2 comments