How to make Tabs in Settings API?

Hi,

I am trying to make my own Theme Options using Settings API.

function add_theme_menu_item()
{
	add_menu_page("Thunder Theme Options", "Thunder Theme Options", "manage_options", "theme-options", "theme_settings_page", null, 99);
}

add_action("admin_menu", "add_theme_menu_item");

function theme_settings_page(){
	
}

I have created just a menu page. Now inside that page I want to create tabs.

Can anyone help me a bit on how to create just the tabs?

Thank you.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.