mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
268 B
Text
10 lines
268 B
Text
add_filter( 'relevanssi_post_ok', 'relevanssi_memberpress_compatibility', 10, 2 );
|
|
|
|
function relevanssi_memberpress_compatibility( $post_ok, $post_id ) {
|
|
$post = get_post( $post_id );
|
|
if ( MeprRule::is_locked( $post ) ) {
|
|
$post_ok = false;
|
|
}
|
|
|
|
return $post_ok;
|
|
}
|