add_section( 'blogmax_menu', array( 'title' => esc_html__('Header Menu','blogmax-news'), 'description' => esc_html__( 'Header Menu options.', 'blogmax-news' ), 'panel' => 'nav_menus', ) ); // ads image setting and control. $wp_customize->add_setting( 'ads_image', array( 'sanitize_callback' => 'blogmax_sanitize_image' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'ads_image', array( 'label' => esc_html__( 'Ads Image', 'blogmax-news' ), 'description' => sprintf( esc_html__( 'Recommended size: %1$dpx x %2$dpx ', 'blogmax-news' ), 900, 100 ), 'section' => 'blogmax_menu', ) ) ); // ads link setting and control $wp_customize->add_setting( 'ads_url', array( 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'ads_url', array( 'label' => esc_html__( 'Ads Url', 'blogmax-news' ), 'section' => 'blogmax_menu', 'type' => 'url', ) );