Skip to content

Instantly share code, notes, and snippets.

@holisticnetworking
Created January 16, 2018 13:46
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 holisticnetworking/280b83ca17074921661f8564e4c7f68a to your computer and use it in GitHub Desktop.
Save holisticnetworking/280b83ca17074921661f8564e4c7f68a to your computer and use it in GitHub Desktop.
Adding submenu to page.
public function admin_menu() {
add_submenu_page(
'publish_status',
'Scheduled Jobs',
'Scheduled Jobs',
'manage_options',
'admin.php?page=scheduled_jobs',
[ &$this, 'display_schedule' ]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment