=== Article Directory === Contributors: Dimox Donate link: http://dimox.name/ Tags: categories, articles, directory, list Requires at least: 2.1 Tested up to: 2.5.1 Stable tag: 0.7 Displays the structured list of categories (like in article directory), which can be easily customized with CSS. == Description == The primary task of this plugin is deduce on the main page (or any another) the structured list of categories, which can be easily customized with CSS, how it's made now on Articlesss.com web-site. Special features: * Simple and handy design using CSS. The structure of categories is the multilevel list which can be altered easily with CSS, as you need. The parent category have the <div> container to mark it out with CSS as a parent. * Parent category is showing amount of articles in subcategories. The character also include the number of articles in this parent category. * Ability to display the specified amount of child categories (2nd level). * Ability to display categories on specified amount of columns. * Ability to hide all subcategories. Standard optional features: * Amount of articles in parent and child categories. * Category description in link title. * Show the empty categories. * Use hierarchy for subcategories. * Exclude selected categories. == Installation == 1. Copy the article-directory.php file in WordPress plugins directory (...\wp-content\plugins\). 2. Copy the categories.css file in directory with your theme. 3. Activate the plugin through admin interface. 4. Add the following code in the index.php of your theme: <?php article_directory() ?> 5. Add the following code in the style.css: @import 'categories.css'; If it is necessary, you should customize some options at the top of article-directory.php file (default options are already optimum). The plugin also lets you to display the list with the links to categories RSS feeds. To do this, you must: * Create a new page template. * Before the code <?php get_header(); ?> insert the following code: <?php $rssfeeds=true; ?>. * Insert categories list function: <?php article_directory() ?>. * Create a new page in the admin interface and select the created template.