How to Edit Footer in WordPress

How to Edit Footer in WordPress? 3 Most Effective and Simple Ways

Are you trying to edit a premade footer, but having troubles understanding some crucial settings in WordPress? If so, then you are at the right place. Once in a while, you do have the thought of changing the default footer design because it may not go with shope’s theme. So, editing the footer seems quite crucial in terms of website development! 

Let’s know how to edit footer in WordPress and important settings that can manipulate this process further. 

What’s a WordPress Footer?

A footer in WordPress website is a short section that is positioned at the bottom of a page, usually containing some important information like contact details, copyright info, other page links, and social media links. 

This section can be considered a web page’s closing remarks that gives visitors additional information and other ways to explore more of your content. 

Most web page footers will contain a copyright statement which is “Proudly Powered by WordPress”. Using some plugins, you can remove this statement and replace it with some other wording. 

Usually, a footer file is located at the footer.php template file. 

How to Edit Footer in WordPress with 3 Simple Ways

Just like header, footer can play a vital role in showcasing your website’s crucial details to your visitors. Perfectly editing or knowing which functions lead to a good footer design can be important. 

1.  Use the WordPress customizer to edit your webpage footer 

You can use the WordPress Appearance menu to edit your webpage footer. It’s the most basic way to edit a footer and works on all WordPress-supported themes. 

Step 1: Navigate Appearance 

First, navigate to the Appearance menu, from there click on Customize

How to Edit Footer in WordPress

Step 2: Edit your Footer 

From there, navigate to Widgets

How to Edit Footer in WordPress

You should see Footer options where you can edit this section. 

How to Edit Footer in WordPress

You can customize your footers in any way you want, such as adding Text to the footer or ending many social media profile links, such as Facebook, YouTube, and LinkedIn. To do so, click on Add a Widget

After adding a widget, this is how an end result should look like, 

Keep in mind that each widget has a different customization option. 

2. You can delete the “Proudly Powered by WordPress” text from your footer 

And, it’s not even illegal! Because “Proudly Powered by WordPress” is just a token of appreciation from the community and doesn’t add any significant value to your overall footer design. 

You can easily delete this text from your footer.php file, just follow the below steps. 

Step 1: Navigate to editor 

Go to Appearance > Editor 

Step 2: Edit footer PHP file 

Click on the white surface, to access the editor. Now, click on the footer area and click on the 3 dots, you should see an array of options there. 

From those options, click on Delete to remove the footer. 

Now, just save the edit and preview your site. 

3. Using a footer plugin

You can use a footer plugin to add a custom footer to your web pages. Mostly, footer plugins allow you to insert custom codes, which is pretty efficient. 

Step 1: Install “Insert Headers And Footers” plugin 

From the WordPress plugin repository, download the Insert Headers And Footers plugin and activate it. 

Step 2: Add a custom footer code 

After activating, navigate to Settings > WP Headers and Footers

Now, scroll down and add the this custom code in Scripts in Footer,  

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Horizontal Footer Example</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="content">
        <!-- Your page content goes here -->
    </div>
    <footer>
        <div class="footer-container">
            <div class="footer-section">
                <h4>About Us</h4>
                <p>We are dedicated to providing the best service possible.</p>
            </div>
            <div class="footer-section">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="#">Home</a></li>
                    <li><a href="#">Services</a></li>
                    <li><a href="#">Contact</a></li>
                    <li><a href="#">About</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Follow Us</h4>
                <ul class="social-links">
                    <li><a href="#">Facebook</a></li>
                    <li><a href="#">Twitter</a></li>
                    <li><a href="#">Instagram</a></li>
                </ul>
            </div>
        </div>
        <div class="footer-bottom">
            &copy; 2024 Your Company | Designed by You
        </div>
    </footer>
</body>
</html>

Now, click on Save Changes.

Go to your website to check the footer. This is how our footer was displayed on our website.

You can customize it as you want by modifying the codes. 

FAQ 

Where is the footer php located in WordPress?

The footer.php file in WordPress is located in the theme folder, you can navigate it via Appearance > Theme Editor in your WordPress dashboard and selecting footer.php from the list of theme files

Is it illegal to remove “Proudly Powered by WordPress” in the footer?

No, deleting the “Proudly Powered by WordPress” is not illegal. You see it doesn’t add much value to your overall website performance nor contents. However, keeping the name can showcase WordPress’s role in empowering your website.

What’s the main purpose of the footer?

Just like a header, a footer also serves as a navigation panel with crucial links, contact information, and legal notices. By presenting visitors with the right information, this element can enhance their overall user experience. 

What are some best ways to make my footer better?

You can improve your footer by adding links, copyright notices, contact information, and button user counts. Try to eliminate any unnecessary information from your footer. 

What’s the best size of a footer on a website?

The best height for a footer is around 100-200 pixels to ensure perfect visibility while maintaining a balanced design.

Wrapping Up 

One more thing: In most good footer examples, the information is arranged horizontally. So, always select a footer that displays your information horizontally. 

And that’s pretty much it. These are basic and simple ways to edit your footer without much coding. 

Happy editing! 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top