I have recently came across a encrypted footer.php of a WordPress Template File. Developers mostly doing this to keep their link in the website footer. Here is how you can modify the wordpress footer template.
open the encrypted footer.php and add this line before the encrypted code. Continue Reading »
Recently I am redesigning a general WordPress Archive Template. The Template file for archive category or tag pages is archive.php if tag.php is not present.
changed the
<?php the_content( $more_link_text, $strip_teaser, $more_file ); ?>
to this code
<?php the_excerpt(); ?>
The display has become much more cleaner than before. Only The title and a excerpt of the main content is being displayed.