AlkantarClanX12
Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/blossom-recipe/inc/customizer/ |
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/blossom-recipe/inc/customizer/footer.php |
<?php /** * Footer Setting * * @package Blossom_Recipe */ function blossom_recipe_customize_register_footer( $wp_customize ) { $wp_customize->add_section( 'footer_settings', array( 'title' => __( 'Footer Settings', 'blossom-recipe' ), 'priority' => 199, 'capability' => 'edit_theme_options', ) ); /** Footer Copyright */ $wp_customize->add_setting( 'footer_copyright', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'footer_copyright', array( 'label' => __( 'Footer Copyright Text', 'blossom-recipe' ), 'section' => 'footer_settings', 'type' => 'textarea', ) ); $wp_customize->selective_refresh->add_partial( 'footer_copyright', array( 'selector' => '.bottom-footer .copyright .copyright-text', 'render_callback' => 'blossom_recipe_get_footer_copyright', ) ); /** Note */ $wp_customize->add_setting( 'footer_text', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post' ) ); $wp_customize->add_control( new Blossom_Recipe_Note_Control( $wp_customize, 'footer_text', array( 'section' => 'footer_settings', 'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'blossom-recipe' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://blossomthemes.com/wordpress-themes/blossom-recipe-pro/?utm_source=blossom_recipe&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ), ) ) ); $wp_customize->add_setting( 'footer_settings', array( 'default' => 'one', 'sanitize_callback' => 'blossom_recipe_sanitize_radio' ) ); $wp_customize->add_control( new Blossom_Recipe_Radio_Image_Control( $wp_customize, 'footer_settings', array( 'section' => 'footer_settings', 'choices' => array( 'one' => get_template_directory_uri() . '/images/pro/footer.png', ), ) ) ); } add_action( 'customize_register', 'blossom_recipe_customize_register_footer' );