diff --git a/src/footer.php b/src/footer.php index 4d645a8..4e99ebc 100644 --- a/src/footer.php +++ b/src/footer.php @@ -38,10 +38,11 @@

- +
+ diff --git a/src/functions/customizer.php b/src/functions/customizer.php index 8769303..7415276 100644 --- a/src/functions/customizer.php +++ b/src/functions/customizer.php @@ -49,6 +49,20 @@ function tainacan_customize_register( $wp_customize ) { 'section' => 'footer_info', ) ); + $wp_customize->add_setting( 'footer_logo', array( + 'capability' => 'manage_options', + ) ); + + $wp_customize->add_control( + new WP_Customize_Image_Control($wp_customize, 'footer_logo', + array( + 'label' => __( 'Upload a footer logo', 'tainacan-theme' ), + 'section' => 'footer_info', + 'settings' => 'footer_logo' + ) + ) + ); + // Add color scheme setting and control. $wp_customize->add_setting( 'color_scheme', array( 'default' => 'default',