Advertisement
ghenzdeveloper

PeepSo navigation profile new item

Mar 10th, 2025
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. // Add "hello" menu to PeepSo Profile menu
  2. add_filter('peepso_navigation_profile', function($links){
  3.  
  4.     $links['custom'] = array(   // this key needs to be unique to your plugin
  5.       'href' => 'https://youdomain.com/custom-page',           // you probably want to get the permalink programatically
  6.       'label' => __('Custom Page','peepso-core'),
  7.       'icon'  => 'icon-hello',      // CSS needs to work both as <i> and <span>
  8.     );
  9.  
  10.     return ($links);
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement