Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahmedmusawir/080aaa3b8fd1ee9f92d6c67e0f7a6e6a to your computer and use it in GitHub Desktop.
Save ahmedmusawir/080aaa3b8fd1ee9f92d6c67e0f7a6e6a to your computer and use it in GitHub Desktop.
WP-PLUGINS - MENU ITEM FOR THEME PAGE ONLY (APPEARANCE)
add_action( 'admin_menu', 'addThemePage' );
function addThemePage () {
add_theme_page(
__('Theme Options', 'wpsettings'),
__('Theme Options', 'wpsettings'),
'edit_theme_options',
'mpf-settings',
'addThemeOptionsPage'
);
}
function addThemeOptionsPage () {
echo "Welcome to Moose Page";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment