/home/desid573/verdenaturopathy.com.au/wp-content/themes/blossom-coach/inc/customizer
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/themes/blossom-coach/inc/customizer/footer.php (2723B)
add_section(
'footer_settings',
array(
'title' => __( 'Footer Settings', 'blossom-coach' ),
'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-coach' ),
'section' => 'footer_settings',
'type' => 'textarea',
)
);
$wp_customize->selective_refresh->add_partial( 'footer_copyright', array(
'selector' => '.bottom-footer .copyright>span',
'render_callback' => 'blossom_coach_get_footer_copyright',
) );
/** Footer */
/** Note */
$wp_customize->add_setting(
'footer_text',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post'
)
);
$wp_customize->add_control(
new Blossom_Coach_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-coach' ),'
' ),
)
)
);
$wp_customize->add_setting(
'footer_settings',
array(
'default' => 'one',
'sanitize_callback' => 'blossom_coach_sanitize_radio'
)
);
$wp_customize->add_control(
new Blossom_Coach_Radio_Image_Control(
$wp_customize,
'footer_settings',
array(
'section' => 'footer_settings',
'choices' => array(
'one' => get_template_directory_uri() . '/images/footer.png',
),
)
)
);
}
add_action( 'customize_register', 'blossom_coach_customize_register_footer' );