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

Top ↑

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.


Top ↑

Source

File: wp-includes/class-wp-post-type.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
6.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.