Skip to content

Instantly share code, notes, and snippets.

@sunshinephotocart
Created September 20, 2021 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunshinephotocart/0b5f0042c810b6e1872056d73b77e96b to your computer and use it in GitHub Desktop.
Save sunshinephotocart/0b5f0042c810b6e1872056d73b77e96b to your computer and use it in GitHub Desktop.
Add menu item to action menu
// Add this to your theme's functions.php file
// Or use this plugin https://wordpress.org/plugins/my-custom-functions/
add_filter( 'sunshine_action_menu', 'my_custom_sunshine_action_menu' );
function my_custom_sunshine_action_menu( $menu ) {
$menu[97] = array(
'name' => 'PAGE_NAME',
'url' => "PAGE_URL',
);
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment