Display all posts from selected category

if category.php does not exist, make a copy of archive.php or index.php and save it as category.php; then, before the start of the loop, add: <?php global $query_string; query_posts( $query_string . ‘&posts_per_page=-1’); ?>

Code for Category, Tags, Archive URLs

in a category archive, the code could be: echo get_category_link(get_query_var(‘cat’)); in a tag archive, this could be: if(is_tag()) echo get_term_link(get_query_var(‘tag’), ‘post_tag’); the conditional was added to avoid an error messages if not in a tag archive.

sidebar troubles, taxonomy trouble

Categories are a hierarchical taxonomy. Tags are simply a non-hierarchical taxonomy. If you don’t have a use for categories otherwise, then use them for genre. If you have a need for them, then create more taxonomies as needed for additional classification/categorization, etc.. get_sidebar(‘mysidebar’); is for calling a sidebar template file, in your case sidebar-mysidebar.php. dynamic_sidebar(‘name’); … Read more

How can I display a list of categories of my posts

You need to use wp_list_categories() (Codex ref), using the child_of argument. Assuming you know the ID of the “Podcasts” category, e.g. 123: wp_list_categories( array( ‘child_of’ => ‘123’ ) ); If you need to find the category ID, use get_category_by_slug (Codex ref): $cat = get_category_by_slug( ‘podcasts’ ); $catid = $cat->ID; wp_list_categories( array( ‘child_of’ => $catid ) … Read more

How to add categories using mysql

You would want to create an array of those values from your spreadsheet and loop through them to call the wp_insert_category function on each one. http://codex.wordpress.org/Function_Reference/wp_insert_category