Description
Filter the array of admin tabs displayed on the WP Data Sync settings page.
Usage
apply_filters(
'wp_data_sync_admin_tabs'
,
$tabs
);
Parameters
$tabs | array | Array of admin tabs |
Code Example
add_filter(
'wp_data_sync_admin_tabs',
function
(
$tabs
) {
//Do cool stuff here!!
return
$tabs
;
), 10, 1 );
Contact us if you need a code example for this hook. We are happy to review your request.