Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. add_action('admin_menu', 'edit_trustees_page');
  2. function edit_trustees_page() {
  3. global $submenu;
  4. $trustees_page_id = 1; //change this value
  5. $url = get_admin_url() . 'post.php?post=' . $trustees_page_id . '&action=edit';
  6. $submenu['index.php'][] = array( 'Edit Trustees', 'manage_options', $url );
  7. }
  8.  
  9. index.php => Dashboard
  10. edit.php => Posts
  11. upload.php => Media
  12. link-manager.php => Links
  13. edit.php?post_type=page => Pages
  14. edit-comments.php => Comments
  15. themes.php => Appearance
  16. plugins.php => Plugins
  17. users.php => Users
  18. tools.php => Tools
  19. options-general.php => Settings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement