wordpress - Having an archive page with categories and tags -
i'd have archive (alternative search) categories , tags listed on 1 page. possible? can't seem find information on it.
title/archive search<
browse category:
cat 1, cat 2 etc.
(something more specific) browse tags:
tag 1, tag 2 etc.
something maybe?
<?php get_header(); ?> <div id="container"> <div id="content" role="main"> <?php the_post(); ?> <h1><?php the_title(); ?></h1> <?php get_search_form(); ?> <h2>browse month:</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> <h2>browse category:</h2> <ul> <?php wp_list_categories(); ?> </ul> <h2>browse tags:</h2> <ul> <?php wp_tag_cloud(','); ?> </ul> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Comments
Post a Comment