Modify wordpress themes special links

In some wordpress themes may be you would find some links can not be modified, even if you can not find where there are. How to modify them?Follow me…

First you find the file which you think those links will be.

Then try search by some tools such as Notes, ZDE.

If you do not get results, don’t close the file. Because the code may be just in the file.It is encoded.

Try to find decode functions as base64_decode or gzinflate.Run them, then you will find the links.

For exmaple:

gzinflate(base64_decode(‘rZGxboQwDIbn8hRWFuhykdqtzYXh5i5Hh24oQO5iKSSIhFLevgaa6oZKt3SIEjv+f3+WS5kJ8yxFOZgBal3kbzqq/PEVSik4fWSZmCy0VoVwZBZDZJR6EBalUGBGfTmyXdtYf0V38UU+hvBUT6PdXRhEjFansrVFtbgOWxU1RIMBAtJrCuiucK6qH9UNkVBNMyaXs1bWLlBhP1gNyQm9Y5LEgq+1MvErOkR6h7f1fa9dDPVd8HejwRJ3iJBEED0QEQw+UIDu7xFOqfq/ZzExDi+cz/N8+Fq6+UBY/Bd8zUCIU4eeyY81qLbg1mxDnIe6p7UXWyvaOJ/sdnX4uQ/xDQ==’));

Run the code ablove, you will get the result:

?>
<h3><?php _e(‘Meta’); ?></h3>

<ul class=”list”>

<li><a href=”<?php bloginfo(‘rss2_url’); ?>” title=”<?php _e(‘Syndicate this site using RSS’); ?>”><?php _e(‘<abbr title=”Really Simple Syndication”>RSS</abbr>’); ?></a></li>
<li><a href=”<?php bloginfo(‘comments_rss2_url’); ?>” title=”<?php _e(‘The latest comments to all posts in RSS’); ?>”><?php _e(‘Comments <abbr title=”Really Simple Syndication”>RSS</abbr>’); ?></a></li>
<li><a href=”http://www.xydw.com/” title=”xydw studio”>Xydw Studio</a></li>
<?php wp_meta(); ?>

</ul>

</div><?php

Replace the machine language to what you can understand.Then you can modify them.

3 Comments

  1. cd84201b says:

    挺喜欢这里简洁的灰色主题,下载了这里的css和图片把wp默认主题改了一下,细节地方没弄好,博主能不能分享一下发一份到邮箱?

  2. luckymouse says:

    这个周末整理上来吧。

  3. cd84201b says:

    thanks!

Leave a Reply

You must be logged in to post a comment.