Core Function
View Source on Trac ↗ wp_get_post_terms()
wp_get_post_terms( mixed $post_id = 0, mixed $taxonomy = 'post_tag', mixed $args = array() ) Retrieves the terms for a post.
Parameters 3 required
| Name / Type | Description |
|---|---|
| int | $post_id Optional. The Post ID. Does not default to the ID of the global $post. Default 0. Required |
| mixed | (string | string[]) $taxonomy Optional. The taxonomy slug or array of slugs for which to retrieve terms. Default 'post_tag'. Required |
| array | $args { Optional. Term query parameters. See WP_Term_Query::__construct() for supported arguments. Required |
Return Value
((array)
(array | WP_Error) Array of WP_Term objects on success or empty array if no terms were found.
WP_Error object if `$taxonomy` doesn't exist.
Function Information
Since Version
2.8.0
Source File
wp-includes/post.php
Advertisement