Created
October 27, 2012 04:27
-
-
Save DrewAPicture/3962941 to your computer and use it in GitHub Desktop.
Add 'Customize' link under 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
function ww_add_customize_link() { | |
// add the Customize link to the admin menu | |
add_theme_page( 'Customize', 'Customize', 'edit_theme_options', 'customize.php' ); | |
} | |
add_action ( 'admin_menu', 'ww_add_customize_link' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment