Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php
  2.  
  3. /* ---------------------------------------------------------------- Customizer */
  4. function themeslug_theme_customizer( $wp_customize ) {
  5.  
  6. $wp_customize->add_section( 'themeslug_logo_section' , array(
  7. 'title' => __( 'Logo', 'teulet' ),
  8. 'priority' => 30,
  9. 'description' => 'Upload a logo for this theme',
  10. ) );
  11.  
  12. $wp_customize->add_setting( 'themeslug_first_logo', array(
  13. 'default' => get_bloginfo('template_directory') . '/images/logo.png',
  14. ) );
  15. $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'themeslug_first_logo', array(
  16. 'label' => __( 'Current logo', 'teulet' ),
  17. 'section' => 'themeslug_logo_section',
  18. 'settings' => 'themeslug_first_logo',
  19. ) ) );
  20.  
  21. }
  22. add_action('customize_register', 'themeslug_theme_customizer');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement