michaeluno / admin-page-framework

Facilitates WordPress plugin and theme development.
http://admin-page-framework.michaeluno.jp/
Other
337 stars 71 forks source link

Nested In page tabs. #225

Open ivandotv opened 8 years ago

ivandotv commented 8 years ago

I'm playing with nested in page tabs, I don't know if something like this is supported. I can't seem to add any settings fields to the in page tabs (not supported ?) screenshot_00120151117 t

michaeluno commented 8 years ago

Nested in-page tabs are not supported at the moment, sorry. It is an interesting idea though.

If you need to nest tabs in only one depth, you can use form section tabs.

I can't seem to add any settings fields to the in page tabs (not supported ?)

Make sure you set the tab_slug argument in the section definition array.

            array(
                'section_id'        => 'my_section_id',
                'tab_slug'          => 'my_tab_slug', // <--- this one!
                'title'             => __( 'My Section', 'admin-page-framework-loader' ),
            )