wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_get_post_categories › WordPress Function

Since2.1.0
已弃用n/a
wp_get_post_categories ( $post_id = 0, $args = array() )
参数: (2)
  • (int) $post_id Optional. The Post ID. Does not default to the ID of the global $post. Default 0.
    Required: No
    默认:
  • (array) $args Optional. Category query parameters. Default empty array. See WP_Term_Query::__construct() for supported arguments.
    Required: No
    默认: array()
查看:
返回:
  • (array|WP_Error) List of categories. If the `$fields` argument passed via `$args` is 'all' or 'all_with_object_id', an array of WP_Term objects will be returned. If `$fields` is 'ids', an array of category IDs. If `$fields` is 'names', an array of category names. WP_Error object if 'category' taxonomy doesn't exist.
定义在:
文档:

Retrieves the list of categories for a post.

Compatibility layer for themes and plugins. Also an easy layer of abstraction away from the complexity of the taxonomy layer.


源码

function wp_get_post_categories( $post_id = 0, $args = array() ) {
	$post_id = (int) $post_id;

	$defaults = array( 'fields' => 'ids' );
	$args     = wp_parse_args( $args, $defaults );

	$cats = wp_get_object_terms( $post_id, 'category', $args );
	return $cats;
}