我的代码是这样的
$wp_customize->add_setting(
\'scroll_logo\',
array(
\'default\' => \'\',
\'capability\' => \'edit_theme_options\',
\'sanitize_callback\' => \'esc_attr\',
)
);
$wp_customize->add_control( new WP_Customize_Cropped_Image_Control( $wp_customize, \'scroll_logo\', array(
\'section\' => \'title_tagline\',
\'label\' => __( \'Upload Scroll Logo\', \'bar-restaurant\' ),
\'description\' => __( \'Logo Size (120 * 60)\', \'bar-restaurant\' ),
\'flex_width\' => true,
\'flex_height\' => true,
\'width\' => 120,
\'height\' => 50,
\'priority\' => 19,
\'default-image\' => \'\',
) ) );