如何显示与帖子相关主要类别

时间:2014-06-05 作者:H3r0k0

在我的主页上,我有一些来自两个类别的帖子,但我只希望它只显示一个

这是我的密码

<?php
/* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list( __( \', \', \'themename\' ) );
        if ( $categories_list && themename_categorized_blog() ) :
?>
<?php printf( __( \'%1$s\', \'themename\' ), $categories_list ); ?> 
是否可以通过添加此[0] 在代码的某个地方,如果是,在哪里?

1 个回复
SO网友:Nicolai Grossherr

有一些更适合您的功能可供您使用。

对于您的另一个类似问题,请使用get_the_category() 就像你在那里做的那样。或者您可以使用get_categories()wp_list_categories(). 选择什么取决于您的需要,例如在格式方面。

顺便说一句,如果我们谈论的是同一级别的类别,那么主要类别是什么这个问题就不那么容易回答了。

结束

相关推荐

Have_Posts()执行失败

我想创建一个循环,在搜索中显示搜索结果。php文件。我遵循了WordPress Codex教程中的所有说明,该教程位于:https://codex.wordpress.org/The_Loop我在页面上实现了建议的代码,如下所示:<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php endwhile; else: ?> <p><?php _e(\'Sorr