register_{$post_type}_post_type_args WordPress Filter Hook
The register_{$post_type}_post_type_args hook allows you to modify the arguments that are used when registering a post type. This can be useful for changing the labels or capabilities of a post type.
apply_filters( "register_{$post_type}_post_type_args", array $args , string $post_type ) #
Filters the arguments for registering a specific post type.
Description
The dynamic portion of the filter name, $post_type
, refers to the post type key.
Possible hook names include:
register_post_post_type_args
register_page_post_type_args
Parameters
- $args
(array)Array of arguments for registering a post type. See the register_post_type() function for accepted arguments.
- $post_type
(string)Post type key.
Source
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |