wordpress theming - display category name with links in search page -


how display category title , respective links , contents.

i have codes , contents on posts working not on category's title/links

something link this:

<?php /*     template name: search */ ?>   <?php if (have_posts()) : ?>     <?php while (have_posts()) : the_post(); ?>    <?php      echo '<a href="'. get_category_link($current_cat_id). '>'. the_category(' ').'</a> '; ?>                         the_title();    the_excerpt();     <?php endwhile; ?>       <?php else : ?>          <h2>no posts found.</h2>      <?php endif; ?> 

use get_the_category_list:

$categories_list = get_the_category_list( ', ' ); if( $categories_list ) echo $categories_list; 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -