-
Notifications
You must be signed in to change notification settings - Fork 20
friends_admin_tabs
github-actions[bot] edited this page Feb 5, 2026
·
9 revisions
This template contains the Friends Settings Header.
add_filter(
'friends_admin_tabs',
function( array $string_list ) {
// Your code here.
return $string_list;
}
);-
array$string_list
apply_filters(
'friends_admin_tabs',
array(
__( 'Welcome', 'friends' ) => 'friends',
__( 'Settings' ) => 'friends-settings', // phpcs:ignore WordPress.WP.I18n.MissingArgDomain
__( 'Friendships', 'friends' ) => 'friends-wp-friendships',
__( 'Notifications', 'friends' ) => 'friends-notification-manager',
__( 'Import/Export', 'friends' ) => 'friends-import-export',
)
)