-
Notifications
You must be signed in to change notification settings - Fork 80
activitypub_admin_settings_tabs
github-actions[bot] edited this page Sep 9, 2025
·
11 revisions
Filters the tabs displayed in the ActivityPub settings.
/**
* Filters the tabs displayed in the ActivityPub settings.
*
* @param array $settings_tabs
* @return array The filtered value.
*/
function my_activitypub_admin_settings_tabs_callback( array $settings_tabs ) {
// Your code here.
return $settings_tabs;
}
add_filter( 'activitypub_admin_settings_tabs', 'my_activitypub_admin_settings_tabs_callback' );
-
array
$settings_tabs
The tabs to display.
\apply_filters( 'activitypub_admin_settings_tabs', $settings_tabs )
Follow @[email protected] for updates and news.