Created
April 28, 2018 00:25
-
-
Save ahmedmusawir/080aaa3b8fd1ee9f92d6c67e0f7a6e6a to your computer and use it in GitHub Desktop.
WP-PLUGINS - MENU ITEM FOR THEME PAGE ONLY (APPEARANCE)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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