1) { wp_link_pages('before=&next_or_number=number&nextpagelink=»&previouspagelink=«&pagelink=%'); } $post_tags = wp_get_post_tags($post->ID); if(!empty($post_tags)) : echo '

'; the_tags('  ',', ',''); echo '

'; endif; echo ''; endwhile; endif; // Stop the Loop. } if ( is_archive() || is_author() || is_category() || is_home() ) { // Start the Loop. echo ''; // Stop the Loop. } if ( is_search() ) { // Start the Loop. global $query_string; $query_args = explode("&", $query_string); $search_query = array(); foreach($query_args as $key => $string) { $query_split = explode("=", $string); $search_query[$query_split[0]] = urldecode($query_split[1]); } // foreach $the_query = new WP_Query($search_query); echo ''; // Stop the Loop. } ?>