Put this code in function.php. create custom section in customizer for logo :
<?php
add_action('customize_register', 'theme_footer_customizer');
function theme_footer_customizer($wp_customize){
//adding section in wordpress customizer
$wp_customize->add_section('footer_settings_section', array(
'title' => 'Footer Text Section'
));
//adding setting for footer logo
$wp_customize->add_setting('footer_logo');
$wp_customize->add_control(new WP_Customize_Upload_Control($wp_customize,'footer_logo',array(
'label' => 'Footer Logo',
'section' => 'footer_settings_section',
'settings' => 'footer_logo',
)));
}
Related Posts:
- How to override parent functions in child themes?
- Child theme – Overriding ‘require_once’ in functions.php
- Declaring an instance of class included in parent theme from child theme functions.php
- override parent theme configuration in child functions.php
- Is it possible to override this function/class in a child theme?
- Override parent theme function that is not hooked or in the functions.php file
- add sidebar area to header of child theme
- Should I ask a theme developer to use locate_template rather than require_once
- override parent theme configuration in child functions.php
- Proper way of using functions in action hook?
- Avoid loading css from parent theme
- How can I change a function in a parent theme via a child themes functions.php
- How to load parent theme template parts in child theme
- How would I go about replacing this function in my child theme located in inc/template-tags.php
- Enqueuing latest version of jQuery into a child theme returns a blank screen
- Where do I go to edit this area? [closed]
- overwrite code snippet from parent to child theme
- get_template_directory_uri() links to child theme not parent
- Removing parent theme CSS without editing parent theme
- How do I create a child theme from PowerMag theme
- Change default color scheme in twentyfifteen child theme?
- How would I correctly implement a new if statement in a child functions file?
- Override parent theme function that is not hooked or in the functions.php file
- Problem with Child-Theme using of foundation-framework [closed]
- get_template_directory_uri pointing to parent theme not child theme
- How to customize the_archive_title()?
- remove_action on after_setup_theme not working from child theme
- Adding a second email address to a completed order in WooCommerce [closed]
- Include files in child theme functions file
- Redeclare a function in a child theme
- How to override a function when isn’t at functions.php
- Theme Customization API and child themes
- How to remove Customize from admin menu bar after WP 4.3
- Child theme functions.php do I use php open and close tags?
- How to Add Customizer Setting in Child Theme
- One Child Functions.php for Multiple Child Themes
- Removing custom background and header feature in child theme
- How to override function in functions.php of parent theme?
- Implementing DNS Prefetching with WordPress
- Child theme – overriding add_image_size by a child theme [duplicate]
- syntax for remove_filter in parent theme with class
- How to override functions.php in child theme?
- Overriding core functions in child theme
- Function in Child Theme not overriding Parent Theme function [duplicate]
- Change parent theme file function in child themes functions.php
- Adding extra SVGs to TwentyNineteen child theme using class TwentyNineteen_SVG_Icons
- Reuse variable in hook callback
- Child theme – copied some files from parent to child website still uses parent files
- Add inline css to theme
- How to override filter in child theme?
- I created a child theme and it doesn’t work for some of the css files
- Widgets Section not displaying in theme customizer
- Unregister Nav Menu with fallback?
- Child Theme Not Overriding Parent Theme
- Changes to functions.php not working
- Overriding methods in a child theme
- How to override enqueued styles using a child theme
- Child theme functions.php not executing
- How to store / access files in child theme folder
- How to load some jquery code to make validation in the theme customizer?
- Make “sidebar template” the default template for new pages
- wp_enqueue JavaScript in child-theme (ReferenceError) using Search & Go
- Overwrite Parent Theme add_image_size in Child Theme
- Twenty Eleven Child theme error when attempting to use a rewritten function
- How do I get a child theme to load scripts from the parent theme?
- Customizer field value into functions.php variable
- PHP files included in functions.php don’t seem to work
- how to edit functions.php in a child theme
- Load parent theme files before child theme functions.php
- Best practice when altering a parent theme function inside a child theme?
- How to make child theme inherit parent custom theme options [closed]
- Include files in child themes, declare in functions.php
- How to remove set_post_thumbnail_size() in child themes?
- Creating a child theme – functions.php code issue
- Echo tags used to describe the theme
- Overwriting Parent Theme’s Image Sizes
- Child theme within a child theme?
- Problem only while using require_once() within functions.php
- Twentyten Child Theme: header images display messed up in admin panel
- Add other social networks to TwentyNineteen_SVG_Icons class in child theme?
- Why is functions.php file in child not initializing and over-writing parent?
- Add Custom Background Properties to Customizer
- Please Explain the Importing Process of Multiple Stylesheets for Child Themes
- Reuse variable in hook callback
- Automatically include all php files in a child theme directory
- Override the function twentytwelve_scripts_styles in a child theme
- Add custom function to a theme with child theme’s functions.php
- Pagination in relation to archive.php
- Skeleton Child Theme Add Icon Bar to Header Flex Grid
- append to existing parent theme function
- Running script based on Category
- Remove Custuomize Sections
- Load custom css in functions.php causing library issue
- Not all CSS elements transferring via parent to child?
- unnecessary request call for js and css after calling wp_dequeue_script
- Dequeue script to prevent javascript event conflict on wordpress child theme
- Return child theme url
- Got white blank page after copying the functions.php to child theme
- How do I change a parent theme’s function through the child theme?
- laoding bloginfo url in function array?