apply_filters( 'get_the_categories', \WP_Term[] $categories, int|false $post_id )
- Since
- 3.1.0, 4.4.0
Filters the array of categories to return for a post.
Compatibility
- WordPress
- since 4.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$categories\WP_Term[]- An array of categories to return for the post.
$post_idint|false- The post ID.
Where this hook fires · 1
wp-includes/category-template.php:98get_the_category()
Source code
* @since 3.1.0 * @since 4.4.0 Added the `$post_id` parameter. * * @param WP_Term[] $categories An array of categories to return for the post. * @param int|false $post_id The post ID. */ return apply_filters( 'get_the_categories', $categories, $post_id );} /** * Retrieves category name based on category ID. * * @since 0.71Changelog
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
4.4.0
Added the
$post_id parameter.from the docblock3.1.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.