I want to pull the list of the categories on my site on a single page, is there an easy way to do it?
I think there is an extension that does this... just do some creative searches to try and find it. Good luck.
Add this to functions.php in your theme folder: function show_all_categories() { $categories = get_categories(); foreach($categories as $category) { echo '<p><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></p>'; } } add_shortcode('showallcats', 'show_all_categories'); Code (markup): But this is even simpler: function show_all_categories() { echo wp_list_categories('title_li='); } add_shortcode('showallcats', 'show_all_categories'); Code (markup): Then create a post or page and add the shortcode [showallcats] to it.