您如何显示类别标题及其各自的链接和内容。
我有我的代码,帖子上的内容正在运行,但在类别的标题/链接上却没有
一些东西链接这个:
<?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; ?>