Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericnicolaas/8b9d4a632f124c319b01 to your computer and use it in GitHub Desktop.
Save ericnicolaas/8b9d4a632f124c319b01 to your computer and use it in GitHub Desktop.
Register an image control in the Wordpress Customizer
/**
* Create an image control in the Customizer with an ID of 'logo_url'.
*
* This is added to the 'title_tagline' section.
*/
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'logo_url',
array(
'settings' => 'logo_url',
'section' => 'title_tagline',
'label' => __( 'Logo', 'my_theme' )
) )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment