apply_filters( 'vimeotheque\admin\page\settings_tabs', array $tabs )
Filter that allows addition of extra tabs to plugin Settings page.
Description
To pass a new tab to this filter, give it an array having this format:
$tabs[‘my-tab-id’] = array( ‘title’ => __(‘My tab title’), ‘callback’ => callback function that will create the tab output (ie. array( $this, ‘method_name’ )), ‘before’ => false // The tab ID that the added tab should be included after ( post_options, content_options, image_options, import_options, embed_options, auth_options ). False to be added at the end of the tabs )
Parameters
- $tabs
-
The new tabs to be registered.