How to Edit WordPress site Footer.
When you install WordPress, one of the most important but sometimes overlooked parts is the branded copy of the default footer at the bottom of your web pages.
The footer usually includes elements such as disclaimer links, copyright and date information, privacy policy and terms of service, contact information, and a sitemap.
A footer helps improve user experience, improve overall design quality, improve visitor perception of your brand, and increase engagement. If you don’t change your footer text to match your brand identity, it may seem inappropriate or unprofessional to everyone who visits your site.
This guide covers the basic techniques that you can use to edit the footer in WordPress.
How to Edit the Footer in WordPress
Most WordPress themes are allowed to edit the footer. However, if you have a third-party theme for your site, be sure to read the licensing agreements and documentation as some of them limit the removal of copyright notices.
Before you can start modifying your site’s footer section, make a backup of your site so you can quickly restore it in case of any errors.
You can edit the footer in WordPress using the following methods:
- Theme Customizer
- Footer Widgets
- Plugin Installation
- Editing code in footer.php
How to edit footer in WordPress using the theme customizer
A theme customizer is a part of every WordPress site and you can access it from the Appearance tab in your WordPress admin panel or dashboard. This WordPress feature allows you to make several changes to your site, including changing fonts, colors, adding a logo, and even editing the header and footer sections.
- To edit the footer in WordPress using the theme customizer, log into your WordPress admin panel, and select “Appearance”.
- Select Configure.
- Go to theme settings.
- Then select “Footer”.
- Replace the default text with your own branded copy.
How to edit footer in WordPress using the footer widget
If your WordPress theme has a widget area in the footer section, you can use the widget to add links, text, images, and legal disclaimers.
- To edit the footer using the footer widget, go to Appearance and select Widgets.
- In the Footer widget, you can add a copy of the footer to reflect your brand.
How to edit footer in WordPress using a plugin
There are thousands of WordPress plugins for your newly installed theme that you can use to extend the functionality of your site.
Among these plugins, there is a footer plugin that makes it easy to make minor or major changes to your WordPress site without any coding or other technical experience.
If your WordPress theme doesn’t have a built-in footer plugin, you can use a third-party WordPress footer plugin like Remove Footer Credit.
- To edit the footer using the Remove Footer Credit plugin, install and activate the plugin. Go to the “Tools” setting in your WordPress admin panel and select “Remove Footer Credit“.
- In the first text box, enter the text you want to remove, and then add a copy of the footer to the second text box. When finished, click “Save”.
How to edit footer in WordPress using the Footer.php code
Footer.php is a WordPress template file that renders the footer area of ​​your theme. Editing the footer.php code allows you to replace the default WordPress theme footer text with your own copy of the footer.
It is not recommended to edit the footer.php code directly, especially if you are not familiar with coding. You can use some best practices instead, such as creating a child theme, backing up your theme files, and commenting on the code in the footer.php file.
Note. These instructions are for the WordPress Twenty Seventeen theme.
- To edit the footer in WordPress using the footer.php code, login to your WordPress admin panel and go to Appearance> Theme Editor. …
- Then select a theme in the right pane.
- Open the theme files and find the theme footer (footer.php). If you can’t find it, use the keyboard shortcut CTRL + F.
- Find this PHP code:
get_template_part (“template-parts / footer / site”, “info”)
- Then replace the PHP code with the code below and replace “add text here†with your own footer text.
// get_template_part (‘template-parts / footer / site’, ‘info’);
echo “add text here”;
?>
For example, if my copy of the footer is “Copyright 2020 free-online-converters.com | All rights reserved “, the code will look like this:
// get_template_part (‘template-parts / footer / site’, ‘info’);
echo «Copyright 2020 free-online-converters.com | All rights reserved “;
?>
- Change “Add Text Here” to the desired content in the footer and select “Update File” to end the process.
How to add elements to the WordPress footer
If you want to link your website with a third-party application, you can add code snippets to your WordPress footer.
For example, you can add social media buttons such as Facebook, Instagram, Pinterest, or YouTube to the footer of your site. Just take the script of the social network you want to add and paste it into the footer.
Alternatively, install and activate a plugin that allows you to add a script to the footer section. One plugin that helps with this is the Insert Headers and Footers plugin.
To do this, install and activate the Insert Headers and Footers plugin. Copy and paste the footer code into the “Scripts in Footer” section.
Please save your changes before proceeding.
You can also add an image to the footer using the Customizer or by dragging the image widget to the footer section.
Quickly Edit Your Site’s Footer
Editing the footer section of your WordPress site is one of the various theme improvements you can make. This can be time-consuming if you have a lot of sites, but the design, navigation, and user experience for visitors depend on it.
Did you manage to edit the footer in WordPress on your site by following any of these steps? Share with us in the comments.
–