Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * My Test.
- */
- $wp_customize->add_section( 'my-settings', array(
- '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' ),
- 'title' => __( 'My Section Background Image', 'twentyseventeen' ),
- ) );
- $wp_customize->add_setting( 'my-custom-image', array(
- 'default' => sprintf( '%s/assets/images/sandwich.jpg', get_template_directory_uri() ),
- 'sanitize_callback' => 'absint',
- ) );
- $wp_customize->add_control( new WP_Customize_Media_Control( $wp_customize, 'my-custom-image',array(
- 'section' => 'my-settings',
- 'label' => sprintf( __( 'My Section Image:', 'twentyseventeen' ), $image ),
- ) ) );
Advertisement
Add Comment
Please, Sign In to add comment