Support » Plugins » Looking for Categories “Page” plugin

  • I have been looking around for a plugin that will allow me to create a page that will display only a list of my categories. I have seen a few out there that come close but they are either broken or not quite what I’m looking for.

    The idea is to have a menu item called “archives” or “articles” or something. User can follow that then drill down to the category they are interested in.

    Anyone have any favorites?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Save this as mycats.php in your theme folder:

    <?php
    /*
    Template Name: MyCats
    */
    ?>
    
    <?php get_header(); ?>
    
    <div id="content" class="widecolumn">
    
    <h2>Categories:</h2>
    <ul>
    <?php wp_list_categories('show_count=1'); ?>
    </ul>
    
    </div>
    
    <?php get_footer(); ?>

    Create a page and in the Template field specify MyCats

    This is not a plugin, but a template to list categories. It is modeled after the default theme, so it may need some work to display properly in your theme, but it is a starting point.

    You can copy it from this pastebin.

    I welcome any feedback on it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Looking for Categories “Page” plugin’ is closed to new replies.