How to encrpyt wordpress footer theme

Previously i just make a post that tell us how to decrypt wordpress footer theme so you can modify the theme. Now,  if you are a wordpress theme maker and want to distribute your theme, im prety sure that you want your backlink stay on the footer, right? Here is how you can do that:


- open this url http://www.moto bit.com/util/base64-decoder-encoder.asp
- open your footer.php and copy paste your footer code to the text box on that url
- then click "convert the source data"
- you will get encrpyted data from your source
- open your footer.php
- erase all code on your footer.php and replace with the encrypted code using this formula:
echo(base64_decode(""));
- save your footer.php and run it to test.
- good luck, now your theme is protected.

By doing all step above, your theme footer will be encrypted and it will be difficult for user if they want to remove link that exist on footer. good luck.

Comments