How To Remove Or Change Credit Links in WordPress

 
Credit Link In Wordpress Theme
All the WordPress Themes, Unless specified come with a GNU GPL v2 License. This means it is absolutely legal to remove the credit links in the footer. Well, If it’s not a personal blog, then credit links can do some damage to your site. So, it is better to make them invisible to the user.

I am not in favor of simply removing the links from footer.php file. Because, then we would not be acknowledging the person who made that theme. We just want the visitors to not see the theme and let the developers/webmasters find out which theme you are using.
Credit Link In WordPress ThemeAlso, some themes have some mechanism which disable the theme if you delete the code from the footer.php file. So, here is a simple trick which will work in all cases no matter what.
Just Go to your Footer.php file or View the Source Code of your site. Now look for the Credit links, and observe the div tags they are enclosed in. Most Credit links would have this structure:
1
2
3
<div class="anything" id="footer-credit">
Theme By <a href="http://www.inkhive.com">InkHive.com</a>
</div>
The Keyword you need to know is ‘footer-credit‘. You will not necessary find the word ‘footer-credit’. You simply need the “id” of the div tag enclosing the Credit Links. If there is no such div tag, then you may yourself enclose the links within a div tag and give it an ID. So, Now go to the CSS file of the theme and add to the extreme bottom of it:
1
2
3
#footer-credit {
      display: none;
}
You can also add this Code to the Appearance > Edit CSS page, if it is available for you.