WordPress Tips : How to Tweak Category Pages

Tips is for WordPress User :

Ok it seems that my topic for the week involves designing a blog , I would like to discuss today tips where you can design your blog, This will involve WordPress Tweaking and making your new blog and design . I will also mix Design Tips with an SEO tips so that those pages will be optimized.

You can check your web design if it is compliant to a well know web design standard by checking some design issues that was shown in w3.org.

Designing Your Category Pages

We know that a Category Page produces a duplicate content within our Website. And we also knew that duplicate content is not healthy in our blog. So by knowing this basic SEO idea we can design our category page in a way that We can show to our visitors our category pages in a manner that it can easily be navigated and at the same time Search Engine Crawler Friendly.

So the best way to do this is to change the way our category page shown to visitors and Search Engine crawlers. I would like to teach on how I made my category pages which only shows the Permalink of the post including the the other category where the post belong. I have leave that dates so that my readers will know when I made the post. Although in the Post Pages I have decided to remove those dates since I believe that most of my page is Time Less. ( ehem )

WordPress Codes

Below are the previous codes of my category php

<h1><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a></h1>
        <div class=”date”>
            <?php the_time(‘F j, Y’); ?> &middot; Filed Under <?php the_category(‘, ‘) ?> &middot; <?php comments_popup_link(‘Comment’, ‘1 Comment’, ‘% Comments’); ?>&nbsp;<?php edit_post_link(‘(Edit)’, ”, ”); ?>
        </div>

Here is my new codes

<h2><a href=”<?php the_permalink() ?>” rel=”follow”><?php the_title(); ?></a></h2>
        <div class=”date”>
            <?php the_time(‘F j, Y’); ?> | <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘(Edit)’, ”, ”); ?>
        </div>

You may copy my new codes if you want to copy my new category Pages Design. I am experimenting on the H Tags that is why I have replaced it with H2 rather that H1. Since I would like to optimized the category page name as H1. If this will not succeed I will replace them again with h1. I have also change rel tag from bookmark to follow . I am just testing it.

Hope you like this tips.

Dexter Panganiban https://techathand.net/about-2/

Dexter is a person who loves technology,new gadget, SEO, Social Media and Christianity. Follow him at twitter via @techathand and add him @ Google+ and contact us at [email protected]

You May Also Like

More From Author

5Comments

Add yours
  1. 3
    Pinoy Blurker » links for 2008-06-08

    […] WordPress Tips : How to Tweak Category Pages : Tech At Hand dot Net | Philippine, Blogging, SEO &#03… […]

  2. 5
    links for 2008-06-08 « PinoyBlurker @ PinoyBlogoSphere.com

    […] WordPress Tips : How to Tweak Category Pages : Tech At Hand dot Net | Philippine, Blogging, SEO &amp… […]

+ Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.