close_comments_for_post_types filter-hook . WP 3.2.0
Filters the list of post types to automatically close comments for.
Usage
add_filter( 'close_comments_for_post_types', 'filter_function_name_3980' ); function filter_function_name_3980( $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 3289
$post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
wp-includes/comment.php 3334
$post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );