apply_filters( 'um_excluded_comment_types', $types ) → {array}
Filters excluded comment types.
Parameters:
Name | Type | Description |
---|---|---|
$types |
array | Comment Types. |
- Since:
- 1.3.x
- Source:
Returns:
Comment Types.
- Type
- array
Example
function my_excluded_comment_types( $types ) {
// your code here
return $types;
}
add_filter( 'um_excluded_comment_types', 'my_excluded_comment_types' );