close_comments_for_post_types
Filters the list of post types to automatically close comments for.
Usage
add_filter( 'close_comments_for_post_types', 'wp_kama_close_comments_for_post_types_filter' );
/**
* Function for `close_comments_for_post_types` filter-hook.
*
* @param string[] $post_types An array of post type names.
*
* @return string[]
*/
function wp_kama_close_comments_for_post_types_filter( $post_types ){
// filter...
return $post_types;
}
- $post_types(string[])
- An array of post type names.
Changelog
| Since 3.2.0 | Introduced. |
Where the hook is called
close_comments_for_post_types
close_comments_for_post_types
wp-includes/comment.php 3449
$post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
wp-includes/comment.php 3494
$post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );