<?php echo $title_desc ?>

    3, 'post_status' => 'publish', 'post_type' => 'post', 'orderby' => 'comment_count', 'order' => 'desc' ); $recent_posts = get_posts( $args ); foreach( $recent_posts as $recent_post ) : setup_postdata( $recent_post ); echo '
  • ' . $recent_post->post_title . '
  • '; endforeach; ?>

    3, 'post_status' => 'publish', 'post_type' => 'post', 'orderby' => 'post_date', 'order' => 'desc' ); $recent_posts = get_posts( $args ); foreach( $recent_posts as $recent_post ) : setup_postdata( $recent_post ); echo '
  • ' . $recent_post->post_title . '
  • '; endforeach; ?>

    '', 'orderby' => 'name', 'order' => 'ASC', 'style' => 'list', 'show_count' => 1, 'hide_empty' => 1, 'use_desc_for_title' => 1, 'child_of' => 0, 'hierarchical' => 1, 'title_li' => '', 'number' => null, 'depth' => 0, ); wp_list_categories( $cat_args ); // http://codex.wordpress.org/Template_Tags/wp_list_categories ?>