Wordpress Category Pages

4 replies
The bain of my existence at this time is Wordpress Category Pages.

Short of creating static Pages and substituting them for the category pages on a blog, I find that category pages only work well with true blogs.

I love using wordpress and have been able to overcome pretty much all the obsticles to using it as a true CMS, but boy, if any of you could point me to information on creating category pages, that would be magnificant.

Thanks!

Frank
#category #pages #wordpress
  • Profile picture of the author aaron_nimocks
    You cant have categories for pages.

    You can kind of do this manually if you wanted. Just create the HTML for a category on your template where you want to display it. Then use the below code to have it display only certain categories by the ID.

    PHP Code:
    <ul>
    <?php
    wp_list_categories
    ('orderby=name&include=3,5,9,16'); ?> 
    </ul>
    Here is more documentation on the WP developer site if you needed to customize on how it looks.

    http://codex.wordpress.org/Template_...ist_categories
    Signature

    My free PSD logs can be downloaded at PSD Bum. Enjoy!

    {{ DiscussionBoard.errors[1696076].message }}
    • Profile picture of the author Karen Blundell
      however, in order to insert the php into your page or post you must install the plugin Exec-PHP and then you must update your profile so that using visual editor is unchecked.
      Signature
      ---------------
      {{ DiscussionBoard.errors[1698839].message }}
      • Profile picture of the author Billy Deakin
        Originally Posted by Karen Blundell View Post

        however, in order to insert the php into your page or post you must install the plugin Exec-PHP and then you must update your profile so that using visual editor is unchecked.
        Or create a new template file, use the above code in the template, and set your page to use that template!
        {{ DiscussionBoard.errors[1699529].message }}
  • Profile picture of the author fthomas137
    Hey all,

    I did find a way to customize my category aka archive pages. I'll post more info once I get it working 100%

    Frank
    {{ DiscussionBoard.errors[1701134].message }}

Trending Topics