article-directory folder in WordPress plugins directory (/wp-content/plugins/).categories.css file in directory with your theme.Add the following code in the index.php (or another file) of your theme:
<?php if (function_exists('article_directory')) article_directory(); ?>
Add the following code in the style.css:
@import 'categories.css';
If it is necessary, you should customize some options in admin interface at the "Options -> Article Directory" page (default options are already optimum).
Attention: if you are using a plugin simultaneously with Article Directory WordPress Theme, miss 2-nd, 4-th and 5-th items of installation, because this code is already there by default.
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('article_directory')) article_directory(); ?>
Create a new page in the admin interface and select the created template.




