Skip to content

Instantly share code, notes, and snippets.

@firoz2456
Created March 30, 2018 17:00
Show Gist options
  • Save firoz2456/6dee409d2233d0f87e666726f02880ce to your computer and use it in GitHub Desktop.
Save firoz2456/6dee409d2233d0f87e666726f02880ce to your computer and use it in GitHub Desktop.
add_action( 'admin_menu', array( $this, 'add_admin_pages' ) );
function add_admin_pages() {
add_submenu_page(
'edit.php',
__( 'Drafts for Friends', 'draftsforfriends' ),
__( 'Drafts for Friends', 'draftsforfriends' ),
'edit_posts',
'drafts-for-friends',
array( $this, 'output_existing_menu_sub_admin_page' )
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment