Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created October 27, 2012 04:27
Show Gist options
  • Save DrewAPicture/3962941 to your computer and use it in GitHub Desktop.
Save DrewAPicture/3962941 to your computer and use it in GitHub Desktop.
Add 'Customize' link under Appearance
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