返回介绍

the_taxonomies()

发布于 2017-09-11 10:40:10 字数 2607 浏览 1145 评论 0 收藏 0

the_taxonomies( array $args = array() )

Display the taxonomies of a post with available options.


description

This function can be used within the loop to display the taxonomies for a post without specifying the Post ID. You can also use it outside the Loop to display the taxonomies for a specific post.


参数

$args

(array) (Optional) Arguments about which post to use and how to format the output. Shares all of the arguments supported by get_the_taxonomies(), in addition to the following.

  • 'post'
    (int|WP_Post) Post ID or object to get taxonomies of. Default current post.
  • 'before'
    (string) Displays before the taxonomies. Default empty string.
  • 'sep'
    (string) Separates each taxonomy. Default is a space.
  • 'after'
    (string) Displays after the taxonomies. Default empty string.

Default value: array()


源代码

File: wp-includes/taxonomy.php

function the_taxonomies( $args = array() ) {
	$defaults = array(
		'post' => 0,
		'before' => '',
		'sep' => ' ',
		'after' => '',
	);

	$r = wp_parse_args( $args, $defaults );

	echo $r['before'] . join( $r['sep'], get_the_taxonomies( $r['post'], $r ) ) . $r['after'];
}

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Uses

  • wp-includes/functions.php: wp_parse_args()
  • wp-includes/taxonomy.php: get_the_taxonomies()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Codex

    Example

    
    // Arguments as a query-string.
    the_taxonomies( 'before=<ul>&after=</ul>' ); 
     
    <?php
    // Arguments as an array.
    $args = array(
    	'before' => '<p class=\"meta\">',
    	'after'  => '<p class=\"meta\">',
    );
    the_taxonomies( $args );
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文