Why Remove the Default Footer Credit?
By default, many WordPress themes display a line in the footer that reads something like "Powered by WordPress" or includes a credit link back to the theme developer. While there's nothing wrong with WordPress, this text can look unprofessional on a business site and isn't something you need to keep. Here are three reliable methods to remove or replace it.
Method 1: Use the WordPress Customizer (Easiest)
Some themes let you remove or edit the footer credit directly through the WordPress Customizer — no code required.
- Go to Appearance > Customize.
- Look for a section called Footer, Footer Credits, or Bottom Bar.
- Find the footer credit text field and clear it, or replace it with your own text (e.g., "© 2025 Your Business Name").
- Click Publish.
This option isn't available on every theme, but it's worth checking first since it's update-safe and requires no technical knowledge.
Method 2: Edit via the Theme Editor or Child Theme (CSS/PHP)
If your theme doesn't offer a Customizer option, you can remove the footer credit by editing the theme's footer template. Important: Always do this in a child theme, not the parent theme directly. Editing the parent theme means your changes will be overwritten every time the theme updates.
Step-by-Step (Child Theme Method):
- Create or activate a child theme (many hosts offer tools for this, or use the free Child Theme Configurator plugin).
- Copy your parent theme's
footer.phpfile into your child theme folder. - Go to Appearance > Theme File Editor and open the child theme's
footer.php. - Find the line containing the footer credit text. It often looks like this:
<p>Powered by <a href="https://wordpress.org">WordPress</a></p> - Delete that line or replace it with your own copyright notice.
- Click Update File.
Method 3: Use Custom CSS to Hide the Footer Credit
If editing PHP files feels uncomfortable, you can simply hide the footer text using CSS. This is a quick fix that works on any theme.
- Right-click the footer text on your site and choose Inspect (in Chrome or Firefox).
- Identify the CSS class or ID of the footer credit element (e.g.,
.site-info,#footer-credits). - Go to Appearance > Customize > Additional CSS.
- Add the following code, replacing
.site-infowith your actual class:.site-info { display: none; } - Click Publish.
Note: The CSS method hides the element visually but doesn't remove it from the HTML source. For a cleaner solution, the child theme PHP method is preferable.
Adding Your Own Custom Footer Text
Rather than just removing the default footer, consider replacing it with something useful:
- A copyright notice: © 2025 Your Company Name. All rights reserved.
- Links to your Privacy Policy and Terms of Service pages.
- A brief tagline or contact information.
- Social media icons using a widget or shortcode.
A clean, branded footer reinforces your professionalism and gives visitors useful navigation options at the bottom of every page.
Which Method Should You Use?
| Method | Difficulty | Update-Safe? |
|---|---|---|
| Customizer option | Very Easy | Yes |
| Child theme PHP edit | Moderate | Yes |
| Custom CSS (hide) | Easy | Yes |
Any of these methods will get the job done. If your theme supports the Customizer option, use that first. Otherwise, the child theme approach is the most robust long-term solution.