You appear to be a bot. Output may be restricted
Description
Return the currently selected, validated section
Usage
bw_nav_tabs_section( $default_section, $default_label );
Parameters
- $default_section
- ( mixed ) optional –
- $default_label
- ( mixed ) optional –
Returns
voidSource
File name: oik-clone/admin/bw-nav-tab-sections.phpLines:
1 to 8 of 8
function bw_nav_tabs_section( $default_section=null, $default_label=null ) { $bw_nts = bw_nav_tabs_sections(); $bw_nts->defaults( $default_section, $default_label ); $bw_nts->section(); $bw_nts->sections(); $section = $bw_nts->validate_section(); return( $section ); }View on GitHub