Reo Ranjan Tech

How to Change WordPress Admin Dashboard Footer Text

How to Change WordPress Admin Dashboard Footer Text

5/5 - (3 votes)
Whatsapp Group
Whatsapp Channel
Telegram channel

How to Change WordPress Admin Dashboard Footer Text – Located in the bottom right corner of every page in your dashboard, the WordPress admin footer takes center stage. This footer includes a copyright disclaimer, links to WordPress.org and the WordPress Codex, and information about the version of the WordPress framework that is currently in use. It appears as unchangeable text embedded in the main software, so changing this textual element becomes a difficult undertaking unless you choose to work directly with the software.

Of course, there is a way to change what appears in this section of your dashboard. In this post, I will explain how to change the WordPress admin panel’s footer text without using a plugin. It is not absolutely necessary to incorporate an extra plugin in order to accomplish this simple customization.

Within the footer of the classic WordPress admin dashboard, the default text politely states, “Thank you for creating with WordPress.” It is simple to alter this text because it is so flexible. In this tutorial, I will explain how to change the footer text in the WordPress admin dashboard. You have two options to choose from: you can use functions.php to manipulate the text appropriately, or you can use a code snippet plugin.

How to Change WordPress Admin Dashboard Footer Text (without Plugin) Admin Area in WP

Code

// Change wordpress Admin Footer Text
function wpuruweb_change_admin_footer_text () {  
  echo 'Created by <a href="https://reoranjantech.com">URU Web</a>. Powered by <a href="https://reoranjantech.com">Reo Ranjan Tech</a>';  
}  
   
add_filter('admin_footer_text', 'wpuruweb_change_admin_footer_text');

Note:- Prior to embarking on any alterations to the functions.php file, we strongly advocate adhering to a set of prudent recommendations:

  1. Comprehensive Backup: Endeavour to execute a thorough backup of your website or blog. This ensures the preservation of your existing state, providing a restorable foundation in the event of unforeseen complications.
  2. Exercise Caution: Exercise due caution when contemplating edits to the functions.php file. If the prospect of direct manipulation proves disconcerting, an alternative is at your disposal – the utilisation of a code snippet plugin. This affords a more user-friendly interface for effecting modifications.
  3. Adoption of Child Theme: As a proactive measure preceding any customisations on your website, we recommend the adoption of a child theme. This serves as a protective layer, insulating your alterations from potential disruptions in the event of theme updates. Plugins are available to facilitate the seamless creation of a child theme.
Whatsapp Group
Whatsapp Channel
Telegram channel

Leave a Comment

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

Scroll to Top