Filter: um_ignore_restricted_title

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 false. Set to true if you want to ignore and show real title.

$post_id int

Post ID.

Since:
  • 2.2.3
Source:
Returns:

Marker for ignoring restricted post title changes.

Type
bool
Examples

Leave real post titles even they are restricted. By post ID (for ID = 400).

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 );

Leave real post titles even they are restricted. For all posts: site-wide logic.

add_filter( 'um_ignore_restricted_title', '__return_true' );