srikat

Untitled

Feb 8th, 2017
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. /**
  2. * My Test.
  3. */
  4. $wp_customize->add_section( 'my-settings', array(
  5. 'description' => __( 'Use the included default image or personalize your site by uploading your own image.<br /><br />The default images is <strong>1600 pixels wide and 1050 pixels tall</strong>.', 'twentyseventeen' ),
  6. 'title' => __( 'My Section Background Image', 'twentyseventeen' ),
  7. ) );
  8.  
  9. $wp_customize->add_setting( 'my-custom-image', array(
  10. 'default' => sprintf( '%s/assets/images/sandwich.jpg', get_template_directory_uri() ),
  11. 'sanitize_callback' => 'absint',
  12. ) );
  13.  
  14. $wp_customize->add_control( new WP_Customize_Media_Control( $wp_customize, 'my-custom-image',array(
  15. 'section' => 'my-settings',
  16. 'label' => sprintf( __( 'My Section Image:', 'twentyseventeen' ), $image ),
  17. ) ) );
Advertisement
Add Comment
Please, Sign In to add comment