I am new to Wordpress and am pulling my hair out trying to create a category loop. The loop is supposed to:
- cycle through all categories
- highlight the category name (with reference to
- echo out last 5 posts in this category (with permanent link for publication)
For each html there will be
<div class="cat_wrap"> <div class="cat_name"> <a href="<?php get_category_link( $category_id ); ?>">Cat Name</a> </div> <ul class="cat_items"> <li class="cat_item"> <a href="permalink">cat item 1</a> </li> <li class="cat_item"> <a href="permalink">cat item 2</a> </li> <li class="cat_item"> <a href="permalink">cat item 3</a> </li> <li class="cat_item"> <a href="permalink">cat item 4</a> </li> <li class="cat_item"> <a href="permalink">cat item 5</a> </li> </ul> </div>
Please, help
wordpress wordpress-theming
Simon
source share