Quantcast
Channel: Azhar Kamar » Snippets
Viewing all articles
Browse latest Browse all 10

How to Edit the Footer in Your WordPress Backend

$
0
0

Here’s a simple way to modify the footer in your WordPress backend, just by adding a function in your theme’s functions.php file. You can change to any text you want or simply remove it completely.

Below are step by step instructions on how to edit your WordPress backend footer (the one on the left).

How to Modify WordPress Backend Footer

  1. First, open your WordPress theme’s functions.php file. It should be in /wp-content/themes/your-theme/functions.php.
  2. Now copy the script below and paste it at the bottom of your functions.php file right before the closing ?> tag. This code is exactly what I’m using for my client’s site, so change the text accordingly.
    function modify_footer_admin () {
      echo 'Designed by <a href="http://azharkamar.com">Azhar Kamar</a>. ';
      echo 'Powered by<a href="http://WordPress.org">WordPress</a>.';
    }
    
    add_filter('admin_footer_text', 'modify_footer_admin');
    
  3. So now the footer of my backend looks like this:
    1

That’s it. Good luck!


Viewing all articles
Browse latest Browse all 10

Trending Articles