'; $wp_customize->add_section( 'xm_layout_right' , array( 'title' => __( 'Right Layout', 'atmospheres' ), 'description' => sprintf( "%s", $img1).__( "The image is on the left and the content on the right", 'atmospheres'), 'priority' => 1, ) ); $wp_customize->add_setting( 'xmrf_activate', array ( 'sanitize_callback' => 'atmospheres__sanitize_checkbox', 'default' => false ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_activate', array( 'label' => __( 'Activate Layout on Homepage.', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'checkbox', ) ) ); $wp_customize->add_setting( 'xmrf_title', array ( 'sanitize_callback' => 'wp_kses_post', 'default' => 'Right Layout', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_title', array( 'label' => __( 'Title Text', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'text', ) ) ); $wp_customize->add_setting( 'xmrf_description', array ( 'sanitize_callback' => 'wp_kses_post', 'default' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_description', array( 'label' => __( 'Description Text', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'textarea', ) ) ); $wp_customize->add_setting( 'xmrf_button_text', array ( 'sanitize_callback' => 'sanitize_text_field', 'default' => 'Read More', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_button_text', array( 'label' => __( 'Button Text', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'text', ) ) ); $wp_customize->add_setting( 'xmrf_url', array ( 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_url', array( 'label' => __( 'Button URL', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_image', array ( 'sanitize_callback' => 'esc_url_raw', 'default' => get_template_directory_uri() . '/images/demo_2.webp', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'xmrf_image', array( 'label' => __( 'Load Image', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_image_animation', array ( 'sanitize_callback' => 'atmospheres__sanitize_animations', 'default' => 'fade-right', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_image_animation', array( 'label' => __( 'Image Animation', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'select', 'choices' => atmospheres__animations(), ) ) ); $wp_customize->add_setting( 'xmrf_text_animation', array ( 'sanitize_callback' => 'atmospheres__sanitize_animations', 'default' => 'fade-left', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_text_animation', array( 'label' => __( 'Text Animation', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'select', 'choices' => atmospheres__animations(), ) ) ); $wp_customize->add_setting( 'xmrf_arrow', array ( 'sanitize_callback' => 'atmospheres__sanitize_checkbox', 'default' => true ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'xmrf_arrow', array( 'label' => __( 'Activate Arrow.', 'atmospheres' ), 'section' => 'xm_layout_right', 'type' => 'checkbox', ) ) ); $wp_customize->add_setting( 'xmrf_text_color', array ( 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#333333' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'xmrf_text_color', array( 'label' => __( 'Layout Text Color', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_background', array ( 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ffffff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'xmrf_background', array( 'label' => __( 'Layout Background Color', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_but_background', array ( 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#cc4604' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'xmrf_but_background', array( 'label' => __( 'Button Background Color', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_but_hover_background', array ( 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ad3903' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'xmrf_but_hover_background', array( 'label' => __( 'Button Background Hover Color', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); $wp_customize->add_setting( 'xmrf_but_color', array ( 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ffffff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'xmrf_but_color', array( 'label' => __( 'Button Tex Color', 'atmospheres' ), 'section' => 'xm_layout_right', ) ) ); } add_action( 'customize_register', 'atmospheres_layout_right_customize_register' ); // Front-end function atmospheres_layout_right () { if( get_theme_mod( 'xmrf_activate', true) ) { $title = get_theme_mod( 'xmrf_title', 'Right Layout' ); $description = get_theme_mod( 'xmrf_description', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. ' ); $image = get_theme_mod( 'xmrf_image', SEOS_THEME_URI . '/images/demo_2.webp' ); $button_text = get_theme_mod( 'xmrf_button_text', 'Read More' ); $xmrf_url = get_theme_mod( 'xmrf_url'); $xmrf_arrow = get_theme_mod( 'xmrf_arrow', true ); ?>
alt="" src="">
Arrow" />
>
">