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]
- 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]
- 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
- syntax for remove_filter in parent theme with class
- Overriding core functions in child theme
- 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
- Widgets Section not displaying in theme customizer
- Unregister Nav Menu with fallback?
- Changes to functions.php not working
- Overriding methods in a child theme
- How to load some jquery code to make validation in the theme customizer?
- Overwrite Parent Theme add_image_size in Child Theme
- PHP files included in functions.php don’t seem to work
- 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?
- Echo tags used to describe the theme
- Child theme within a child theme?
- 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 function to a theme with child theme’s functions.php
- Pagination in relation to archive.php
- append to existing parent theme function
- Load custom css in functions.php causing library issue
- Dequeue script to prevent javascript event conflict on wordpress child theme
- Return child theme url
- How do I change a parent theme’s function through the child theme?
- laoding bloginfo url in function array?
- How to edit classes in body tag?
- Can’t locate custom image sizes defined by child theme
- Add back in child theme what the parent theme removed with remove_action
- Can’t switch to a child theme using filters template, option_template and option_stylesheet
- How to include any template using Shortcode fuction?
- Unable to point the child theme directory even using get_stylesheet_directory()
- WP Customizer API loaded into functions.php
- How to edit/replace Parent functions.php function in Child Theme to add “Walker” class
- Different methods of adding menu support to custom theme
- Do we need to change our child function.php to require/include child dir files when we add an over-riding file.php into the child theme
- get_template_directory() – references parent theme directory
- Child theme functions.php
- Any adverse effects of adding apply_filters to a function?
- Astra theme – cannot set short product description under the product title (product name)
- Get webpack to work on child theme
- how can I add filter in specfic field in my website?
- How to remove font awesome from loading in wp theme
- Add custom css file after plugin css with WordPress Child Theme functions.php
- Adding a schema code to one specific page using functions.php file
- How Do I Unhook This Parent Theme Function?
- Widget is displayed in two places
- Child theme, how to cut the functions.php file into several classes?
- Setting Up Child Theme To Take Priority
- Create New User Custom Field not Saving
- How to create a WordPress Customizer Button to Clear a Cache?
- Will dequeueing in child theme functions.php file prevent Google Fonts from loading?
- Modified functions.php in Magazine Pro theme of Genesis. 500 error
- Help with is_page() and calling css for specific pages in a Child Theme
- How do I integrate my Child Theme into a Custom Template?
- Getting back a blank WordPress site following functions code edit
- Adding a meta box fields to child theme options page
- Preventing PHP Execution in Parent Theme
- Blank child theme – functions.php problem
- Why does my visual post editor break when I try to add a TinyMCE button?
- Notice: Use of undefined constant REQUEST_URI – assumed ‘REQUEST_URI’ in ….functions.php on line 73
- 500 error after upgrading from 5.0 to 5.4 and adding empty functions.php
- Why functions metaboxes is causing White Screen in Admin [closed]
- How do I make my child theme’s CSS update when I save it?
- post_row_actions filter from parent theme not executing in child theme