Wordpress

Show all categories and their post

<?php /** * Template Name: wordpress * Description: A Page Template that adds a sidebar to pages * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id=”primary”> <div id=”content” role=”main”> <?php //for each category, show 3 posts $cat_args=array( ‘orderby’ => ‘name’, ‘order’ => ‘ASC’ ); $categories=get_categories($cat_args); foreach($categories as … Continue reading