WordPress Basics

How to Edit a Footer in WordPress

Step-by-step methods to safely change your WordPress footer (with and without code).

Your footer is the last thing visitors see before they leave your site. It’s where you add copyright text, legal links, contact details, or a final call-to-action. If it looks outdated or shows the wrong information, it can make the whole site feel unprofessional.

In this guide, you’ll learn several safe ways to edit your WordPress footer: using the Site Editor (block themes), widgets and the Customizer (classic themes), and—if needed—directly editing the footer template file. Whether you’re just getting started or already know what WordPress is and how it works, you’ll be able to update your footer without breaking your layout.

We’ll go step by step so you can adjust your footer text, remove “Proudly powered by WordPress,” add links, and test everything on desktop and mobile before going live.

Prerequisites

Before you start editing your footer, make sure you have the basics in place so you don’t lose any work or accidentally break your design.

  • WordPress admin access: You must be able to log in to the WordPress dashboard with an Administrator account.
  • Theme information: Know which theme you are using and whether it’s a block theme or a classic theme.
  • Basic backup: Have at least a recent backup of your site (files and database) so you can restore it if needed.
  • Child theme or staging site (for code edits): If you plan to edit theme files, work in a child theme or staging site.
Note: You can usually check your current theme under Appearance → Themes in the WordPress dashboard.

Step 1: Identify Your Theme Type (Block vs Classic)

The way you edit your footer depends on the kind of theme you’re using. WordPress has two main types of themes: block themes (full site editing) and classic themes (Customizer plus widgets and template files).

  1. Log in to your WordPress dashboard.
  2. Go to Appearance in the left-hand menu.
  3. Look at the submenu:
    • If you see Editor (sometimes labeled “Site Editor”), you are most likely using a block theme.
    • If you see Customize, Widgets, and Menus, you are most likely using a classic theme.

This matters because block themes let you edit the footer directly in the Site Editor, while classic themes rely more on widgets, the Customizer, or PHP template files.

Pro Tip: If you are not sure, look up your theme’s name plus “block theme” or “classic theme” in a search engine or on the theme’s documentation page.

Step 2: Edit the Footer Using the Site Editor (Block Themes)

If you’re using a block theme, the Site Editor gives you a visual way to control your footer across the whole site.

  1. In the WordPress dashboard, go to Appearance → Editor.
  2. From the Editor sidebar, open the Templates or Patterns area (this may vary slightly by theme).
  3. Look for a template or pattern called Footer, Footer Area, or similar, and click it to open.
  4. Click the text you want to change (e.g., copyright line or links) and edit it directly in the block editor.
  5. Use the Block Inserter to add new blocks such as navigation menus, buttons, or social icons if your design requires it.
  6. Click Save, then confirm the changes for the footer template.

After saving, visit a few different pages on your site to confirm that the updated footer appears everywhere you expect it to.

WordPress Theme File Editor showing the footer-widgets.php file of the Twenty Seventeen theme, demonstrating how to edit a footer in WordPress.
The WordPress Theme File Editor allows direct modification of theme files like footer-widgets.php for customizing your site’s footer.

Step 3: Edit the Footer Using Widgets (Classic Themes)

Many classic themes use widget areas to control the footer. Each column in the footer might be a separate widget area like “Footer 1,” “Footer 2,” and so on.

  1. In the WordPress dashboard, go to Appearance → Widgets.
  2. Locate the sections labeled Footer, such as Footer 1, Footer 2, or Footer Sidebar.
  3. Expand these footer areas to see which widgets are currently active (for example, Text, Custom HTML, Navigation Menu, or Recent Posts).
  4. Click on a widget to edit its content. For a Text or Custom HTML widget, you can change the footer text, HTML links, or even add a small logo.
  5. When you’re done, click Update or Save inside each widget.

If you’re new to widgets, it can help to get familiar with what they are and how they work. For a deeper introduction, see our guide on what a WordPress widget is and how to use it.

Step 4: Edit the Footer Using the Customizer (Classic Themes)

Some classic themes provide dedicated footer settings inside the Customizer. This is where you might find simple options like a copyright text field, toggle switches for footer menus, or color controls.

  1. Go to Appearance → Customize in your WordPress dashboard.
  2. In the Customizer sidebar, look for sections like Footer, Layout → Footer, or Theme Options.
  3. Open the relevant section and look for fields labeled Footer Text, Copyright, or similar.
  4. Update the text, links, or settings as needed.
  5. Use the live preview on the right side to confirm that your changes look correct.
  6. Click Publish to save the footer changes to your live site.
WordPress customizer interface for editing footer settings, displaying color palettes, typography options for headings, and upgrade features for advanced controls.
Customize your WordPress website footer by adjusting colors and typography settings within the theme customizer.
Pro Tip: While you’re in the Customizer, also check your header and navigation. If you want a consistent design, you can later follow a similar approach for the menu using a guide on editing your WordPress navigation bar.

Step 5: Edit the Footer Template File with Code (Advanced)

If your theme does not expose footer options in the Site Editor, Widgets, or Customizer, you may need to edit the footer.php file directly. This is an advanced method intended for users comfortable with PHP and HTML.

Warning: Editing footer.php in the main theme can be overwritten by updates, and a coding mistake can break your site. Always use a child theme or staging site and ensure you have a full backup before making changes.
  1. Create or activate a child theme if you don’t already have one, so your changes are update-safe.
  2. Access your site’s files via cPanel File Manager or an FTP client.
  3. Navigate to /wp-content/themes/your-theme/ (or your-child-theme).
  4. Locate the file named footer.php and open it in the file editor.
  5. Look for the section that outputs the copyright text or footer links. It might look like:
<div class="site-info">
  &copy; <?php echo date( 'Y' ); ?> Your Site Name. All rights reserved.
</div>
  1. Carefully edit the text inside the HTML, leaving the PHP functions intact if you still want the year to update automatically.
  2. Save the file and refresh your site in a new browser tab to see the updated footer.
Note: If you receive a white screen or error message after editing footer.php, undo your recent change using the file editor or restore from backup immediately.

Step 6: Check Your Footer on Mobile and Multiple Pages

After editing your footer, it’s important to confirm that it still looks good everywhere and doesn’t overlap content or hide links on smaller screens.

  1. Open your website in a desktop browser and visit:
    • Your homepage
    • A few blog posts
    • A key landing or product page
  2. Scroll to the bottom of each page and check that:
    • The copyright and links are readable.
    • Any menus or buttons in the footer still work.
    • There is enough spacing between footer elements.
  3. Use your browser’s responsive mode or your phone to view the site on mobile:
    • Ensure text does not wrap in a strange way.
    • Check that social icons and menus are easy to tap.

If your theme includes separate mobile options for the footer, adjust them so the content remains clear and accessible on smaller screens.

Common Footer Editing Problems and Fixes

Even with careful editing, a few common issues can make your footer changes hard to see or manage. Here are quick fixes for the most frequent problems.

Footer changes are not showing

  • Browser cache: Clear your browser cache or view the site in a private/incognito window.
  • Caching plugins: If you use a caching plugin or a CDN, clear the cache there as well.
  • Wrong template or pattern: In block themes, ensure you edited the global footer pattern or template, not just one specific page.

Footer text appears twice

  • Check both Widgets and footer.php. If both output similar content, remove or disable one of them.
  • Some themes have a built-in footer option in the Customizer plus a widget area. Make sure you only use one method for the same content.

Footer overlaps content or looks broken on mobile

  • Remove overly large images or long single-line text in the footer.
  • Split long lists into multiple columns or add margins/padding using your theme’s design settings.
  • Test again after clearing cache and refreshing your CSS if your theme offers that option.

If you’re also customizing your site’s navigation or header, you may find it useful to review how to adjust your menus in a similar way using a guide on editing the WordPress navigation bar so the header and footer feel consistent.

Wrap Up Your WordPress Footer Customization

Editing your footer in WordPress doesn’t have to be risky or confusing. By first identifying whether you’re using a block or classic theme, you can choose the safest method—Site Editor, widgets, Customizer, or direct code edits—that matches your comfort level.

Once your copyright, links, and calls-to-action are updated, checking on multiple pages and devices ensures your footer supports your brand instead of distracting from it. With a few careful steps and a backup in place, you can confidently maintain a professional, useful footer as your site grows.

Further Reading

Frequently Asked Questions

Can I edit my WordPress footer without using any code?

Yes. Most users can edit the footer without touching code by using the Site Editor (for block themes) or footer widget areas and the Customizer (for classic themes). These tools give you visual controls for changing text, adding links, and rearranging blocks or widgets.

Why don’t my footer changes show up on my live site?

Usually this happens because of caching or editing the wrong template. Clear your browser cache and any caching plugin or CDN you’re using, then refresh your site. If you use a block theme, double-check that you updated the global Footer template or pattern rather than a single-page template.

Is it safe to edit footer.php directly in WordPress?

Editing footer.php is safe only if you know what you’re doing and take precautions. Always work in a child theme or staging site, make a full backup first, and avoid deleting existing PHP code you don’t understand. A small syntax error can bring your entire site down until it’s fixed.

How do I remove the “Proudly powered by WordPress” text from my footer?

The method depends on your theme. In many themes you can remove or change this text from the Customizer or a footer settings panel. In others, it may be in a footer widget or inside the footer.php file. If there’s no obvious setting, search your theme files for that phrase, then safely edit it in a child theme.

How long does it typically take to edit a footer in WordPress?

For simple text or link changes using the Site Editor, widgets, or the Customizer, you can usually update your footer in 5–15 minutes, including testing. Advanced edits that involve modifying footer.php or creating a new layout may take longer, especially if you’re working on a staging site and carefully testing across multiple devices.

Related Articles

Leave a Reply

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

Back to top button