We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Allow plugins to get the description of a post type.
/** * Allow plugins to get the description of a post type. * * @param string $description * @param string $post_type_name * @param WP_Post_Type $post_type * @return string The filtered value. */ function my_activitypub_post_type_description_callback( string $description, string $post_type_name, WP_Post_Type $post_type ) { // Your code here. return $description; } add_filter( 'activitypub_post_type_description', 'my_activitypub_post_type_description_callback', 10, 3 );
string
$description
$post_type_name
WP_Post_Type
$post_type
\apply_filters( 'activitypub_post_type_description', $description, $post_type->name, $post_type )
← All Hooks