Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('peepso_group_segment_menu_links', function($links){
- if (isset($links[20][0]) && $links[20][0]['href'] === 'photos') {
- unset($links[20][0]); // Unset the photos entry
- }
- if (isset($links[30][0]) && $links[30][0]['href'] === 'media') {
- unset($links[30][0]); // Unset the video entry
- }
- if (isset($links[0][2]) && $links[0][2]['href'] === 'members') {
- unset($links[0][2]); // Unset the member entry for owners
- }
- if (isset($links[0][1]) && $links[0][1]['href'] === 'members') {
- unset($links[0][1]); // Unset the member entry for members
- }
- return $links;
- }, 99);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement