0

您如何显示类别标题及其各自的链接和内容。

我有我的代码,帖子上的内容正在运行,但在类别的标题/链接上却没有

一些东西链接这个:

<?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; ?>
4

2 回答 2

0

使用get_the_category_list

$categories_list = get_the_category_list( ', ' );
if( $categories_list ) echo $categories_list;
于 2013-04-25T15:43:18.787 回答
0

我确实通过使用此代码解决了它

<?php  echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . the_category(" ").'</a> '; ?>
于 2013-04-25T22:46:25.190 回答