-
Notifications
You must be signed in to change notification settings - Fork 17
friends_admin_tabs
Alex Kirk edited this page Oct 17, 2024
·
7 revisions
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' ) =>
// ...