Skip to content

Instantly share code, notes, and snippets.

@jbreitenbucher
Created March 7, 2012 22:48
Show Gist options
  • Save jbreitenbucher/1996840 to your computer and use it in GitHub Desktop.
Save jbreitenbucher/1996840 to your computer and use it in GitHub Desktop.
WordPress: Options Page Boilerplate
class __JB_Options__ {
public __construct()
{
}
public add_menu_page()
{
add_options_page('__Menu Name__','__Menu Name___','administrator',__FILE__,array('__JB_Options__','display_options_page');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment