Many Bloggers want to Change Copyright Notice in WordPress Footer and replace with their own custom Text or link. It is more important to Change Copyright Notice in WordPress Footer when WordPress is actually used for a commercial website than a Blog.
Why people fails to Change Copyright Notice in WordPress Footer
The main reason for not being able to Change Copyright Notice in WordPress Footer is, users try to find the loop or some hyperlink in the footer.php file of Theme.
It is not only the footer.php file that creates that Copyright Notice in the WordPress footer, but also the functions.php file which defines it.
---
How to Change Copyright Notice in WordPress Footer
Before going to Change Copyright Notice in WordPress Footer; you must make a backup of the functions.php and footer.php files.
Download the functions.php and footer.php files from your current theme to your hard disk then edit it.
After you have followed the steps to Change Copyright Notice in WordPress Footer, save it and replace them with the original.
Alternatively, you can use Editor from Appearance to Change Copyright Notice in WordPress Footer.
Keep in mind, some premium theme platform uses other php file (s), functions.php just calls that/those php file (s). You will get that info from your Theme’s website.
You should get something like this in functions.php:
// footer copyrightif ( !function_exists('display_copyright') ) {function display_copyright( $iYear = null, $mtsSeparator = " - ", $mtsText = ' <span style="color: #33cccc;">All rights reserved.</span>' ){echo '
‘ . display_years( $iYear, $mtsSeparator, false ) .’ ‘. get_bloginfo(‘name’) . ‘ © ‘. $mtsText . ‘
‘;
}
}
if ( !function_exists(‘display_years’) ) {
function display_years( $iYear = null, $mtsSeparator = ” – “, $bPrint = true ) {
$iCurrentYear = ( date( “Y” ) );
if ( is_int( $iYear ) ) {
$iYear = ( $iCurrentYear > $iYear ) ? $iYear = $iYear . $mtsSeparator . $iCurrentYear : $iYear;
} else {
$iYear = $iCurrentYear; }
if ( $bPrint == true ) echo $iYear; else return $iYear;
}
}
//footer copyright end
In the footer.php file, you will get this thing:
< ?php if ( function_exists( 'display_copyright' ) ) display_copyright( 2010, ' to ', ' <span style="color: #33cccc;">All Rights Reserved</span>.' ); ?>

So, to change the Change Copyright Notice in WordPress Footer, you have to:
- To Change Copyright Notice FORMAT you need to change in functions.php
- To Change Change Copyright Notice OUTPUT you need to change in footer.php
Some Quick Tips To Change Copyright Notice in WordPress Footer:
- To Change Copyright Notice sign: Change the C beside the red text.
- To Change Copyright Notice display Year : Modify the green text
- Change Copyright Notice text “All Rights Reserved” : Change the blue text
- Change Copyright Notice appearance : You have to edit the style.css file.

Or, if you are a technophobe like me and a bit worried about playing with .php files, just go to WordPress Dashboard – Appearance – Widgets. Then, drag a Text widget to any of the three Footer Areas and type the text you want.
The result is not as neat because it does not appear on the same line but it is good enough. And, put the symbol on either sides of your text to make it appear bold.
Thanks your supporting tips are really very helpful for during editing wordpress