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.
Filters the list of post types to hide comments for.
/** * Filters the list of post types to hide comments for. * * @param Activitypub\string[] $post_types * @return Activitypub\string[] The filtered value. */ function my_activitypub_hide_comments_for_callback( Activitypub\string[] $post_types ) { // Your code here. return $post_types; } add_filter( 'activitypub_hide_comments_for', 'my_activitypub_hide_comments_for_callback' );
Activitypub\string[]
$post_types
\apply_filters( 'activitypub_hide_comments_for', $post_types )
← All Hooks