A clean structured list of categories, which can be easily customized with CSS. Suitable for articles, links, business directory, etc.
wpdirectory folder in WordPress plugins directory (/wp-content/plugins/).categories.css file in directory of your current THEME.You can call the categories listing on any page throught this function:
<?php wp_directory(); ?>
Add the following code in the index.php (or another file) of your THEME:
<?php if (function_exists('wp_directory')) wp_directory(); ?>
Add the following code in the style.css:
@import 'categories.css';
Remember to add according permissions, so you can edit this file through the Theme Editor
The plugin also lets you to display the list with the links to categories RSS feeds. To do this, you must:
Add the following code:
<?php $rssfeeds=true; ?>
<?php if (function_exists('wp_directory')) wp_directory(); ?>
Create a new page in the admin interface and select the created template.
Requires: 2.5 (previously not tested) or higher
Compatible up to: 2.9.2
Last Updated: 2009-12-20
Downloads: 4,111
Got something to say? Need help?