Guest User

Untitled

a guest
Jun 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. add_action('customize_register', 'themename_customize_register');
  2.  
  3. function themename_customize_register($wp_customize) {
  4.  
  5. $wp_customize->add_section('ignite_custom_logo', array(
  6. 'title' => 'Logo',
  7. 'description' => 'Display a custom logo?',
  8. 'priority' => 25
  9. ));
  10.  
  11. $wp_customize->add_setting('custom_logo', array(
  12. 'default' => ''
  13. ));
  14.  
  15. $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'custom_logo', array(
  16. 'label' => 'Custom logo',
  17. 'section' => 'ignite_custom_logo',
  18. 'settings' => 'custom_logo'
  19. )));
  20.  
  21. }
Add Comment
Please, Sign In to add comment