As a WordPress website owner, you're always striving to make your online presence unique and truly reflective of your brand. From choosing the perfect theme to customizing every aspect of your site, you're constantly on the lookout for ways to stand out. However, one area that often goes unnoticed is the copyright text in the WordPress dashboard footer. It may seem insignificant, but this small detail can be a missed opportunity to add a personal touch to your website.
The default copyright text in the WordPress dashboard footer typically reads something like "Powered by WordPress"
. While this text serves as a credit to the platform and acknowledges its contribution, it doesn't reflect your unique identity or provide any additional information about your website. Learn more about WordPress Administration screen here.
By changing this text, you can:
Showcase Your Brand Identity: Your website is an extension of your brand. Customizing the footer copyright text allows you to add your logo, tagline, or any other branding elements that align with your overall image.
Add Contact Information: Including your contact details in the footer copyright text can make it easier for visitors to reach out to you. This simple addition can enhance user experience and improve customer engagement.
Demonstrate Professionalism: The footer copyright text gives off an impression of professionalism and attention to detail. It shows visitors that you've taken the time to create a cohesive brand experience throughout every aspect of your website.
Change Copyright Text Using Code
To change the WordPress dashboard footer copyright text using code, you can use a custom function in your theme's functions.php
file or in a custom plugin. Here are the steps to do it:
Access Your WordPress Files: You can edit your WordPress files via FTP or by using the File Manager in your hosting control panel. Make sure to create a backup of your files before making any changes.
-
Locate the functions.php File:
- If you're using a custom theme, navigate to your theme folder.
- If you're using a parent theme and want to create a child theme, you should use the child theme's
functions.php
file to avoid losing changes during theme updates.
Add the Following Code:
function change_admin_footer_text() {
echo 'Your Custom Copyright Text';
}
add_filter('admin_footer_text', 'change_admin_footer_text');
Replace 'Your Custom Copyright Text'
with the text you want to display in the WordPress dashboard footer.
-
Save and Upload Changes:
- Save the
functions.php
file. - If you're using FTP, upload the modified file back to your server.
- Save the
-
Refresh the WordPress Dashboard:
- Log in to your WordPress admin dashboard.
- Navigate to the dashboard or any other admin page to see the updated footer copyright text.
Let's see another method to change footer copyright text.
Change Copyright text using WP Adminify
Make sure you have installed WP Adminify plugin in your WordPress website.
Now navigate to "WP Adminify Option panel"
. Click on Admin footer option
.
Scroll down at very bottom and you will see "Admin Footer Text"
option. Just input any content you like to put inside the Footer.
That's it! The copyright text in the WordPress dashboard footer should now be changed to your custom text.
Top comments (0)