Advertisement
arie_cristianD

add custom menu to account page

May 21st, 2024 (edited)
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_filter(
  2.     'jnews_account_page_endpoint',
  3.     'add_custom_account_menu',
  4.     99
  5. );
  6.  
  7. function add_custom_account_menu( $enpoint ) {
  8.     $enpoint['custom_account_menu'] = array(
  9.         'slug'  => 'custom-menu',
  10.         'label' => 'custom_menu',
  11.         'title' => esc_html__( 'Custom Menu', 'jnews' ),
  12.     );
  13.     return $enpoint;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement