get_the_category_list

get_the_category_list






字数4204 · 浏览 · 评论 0

Description

Retrieve category list in either HTML list or custom format. Generally used for quick, delimited (eg: comma-separated) lists of categories, as part of a post’s entry meta. For a more powerful, list-based function, see wp_list_categories().

Usage


<?php get_the_category_list( $separator, $parents, $post_id ); ?>

Parameters

$separator
(string) (optional) Optional, default is empty string. Separator for between the categories.
Default: empty string
$parents
(string) (optional) Optional. How to display the parents. Values: ‘multiple’, ‘single’, empty string
Default: empty string
$post_id
(int) (optional) Optional. Post ID to retrieve categories.
Default: false

Return Values

(string) 

Notes

Categories are ordered by name regardless of the parent-child category relationship. See this example from wp_list_categories() to display the Post categories with the category relationship intact.

Examples

Implementation in WordPress default Twenty Eleven theme

In content-single.php:

<?php
	/* translators: used between list items, there is a space after the comma */
	$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );

	/* translators: used between list items, there is a space after the comma */
	$tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
	if ( '' != $tag_list ) {
		$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
	} elseif ( '' != $categories_list ) {
		$utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
	} else {
		$utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
	}

	printf(
		$utility_text,
		$categories_list,
		$tag_list,
		esc_url( get_permalink() ),
		the_title_attribute( 'echo=0' ),
		get_the_author(),
		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )
	);
?>

Display as List Items

By leaving the $separator value empty, it will generate an unordered list instead, complete with classes.

<?php echo get_the_category_list(); ?>

Result:

<ul class="post-categories">
	<li>
		<a href="http://myblog.com/category/business" title="View all posts in Business" rel="category tag">Business</a>
	</li>
</ul>

Change Log

Since: 1.5.1

Source File

get_the_category_list() is located in wp-includes/category-template.php

Related

  • Article: Categories
  • Function: the_category()
  • Function: the_category_rss()
  • Function: single_cat_title()
  • Function: category_description()
  • Function: wp_dropdown_categories()
  • Function: wp_list_categories()
  • Function: get_the_category()
  • Function: get_the_category_by_ID()
  • Function: get_category_by_slug()
  • Function: get_the_category_list()
  • Function: get_category_parents()
  • Function: get_category_link()
  • Function: is_category()
  • Function: in_category()

See also index of Function Reference and index of Template Tags.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值