apply_filters( 'um_ignore_restricted_title', $ignore, $post_id ) → {bool}
Filters a marker for ignoring restricted post title changes.
Parameters:
Name | Type | Description |
---|---|---|
$ignore |
bool | Marker for ignoring restricted post title changes. Default |
$post_id |
int | Post ID. |
- Since:
- 2.2.3
- Source:
Returns:
Marker for ignoring restricted post title changes.
- Type
- bool
Examples
function change_restricted_title( $ignore, $id ) {
// your code here
if ( 400 === $id ) {
$ignore = true;
}
return $ignore;
}
add_filter( 'um_ignore_restricted_title', 'change_restricted_title', 10, 2 );
add_filter( 'um_ignore_restricted_title', '__return_true' );