WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 85 | /** |
| 86 | * Filters the array of categories to return for a post. |
| 87 | * |
| 88 | * @since 3.1.0 |
| 89 | * @since 4.4.0 Added `$id` parameter. |
| 90 | * |
| 91 | * @param array $categories An array of categories to return for the post. |
| 92 | * @param int $id ID of the post. |
| 93 | */ |
| 94 | return apply_filters( 'get_the_categories', $categories, $id ); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Retrieve category name based on category ID. |
| 99 | * |
| 100 | * @since 0.71 |
| 101 | * |
| 102 | * @param int $cat_ID Category ID. |
| 103 | * @return string|WP_Error Category name on success, WP_Error on failure. |