-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_settings_tabs_pages
github-actions[bot] edited this page Jun 20, 2026
·
4 revisions
Filter the array of tabs representings settings pages.
add_filter(
'wpt_settings_tabs_pages',
function(
array,
string $current
) {
// Your code here.
return array;
},
10,
2
);-
array$pages Array of pages with[ 'key' => 'title' ]. Other variable names:$pages -
string$currentArray key of current page.
array
apply_filters( 'wpt_settings_tabs_pages', $pages, $current )