If you’re using MemberMouse to manage memberships on your site, having Relevanssi co-operate with MemberMouse is easy using the relevanssi_post_ok
filter hook. Add the following code to your site and your protected content will not be displayed to users without access to the content:
PHP
x
add_filter( 'relevanssi_post_ok', 'membermouse_relevanssi_ok', 20, 2 );
function membermouse_relevanssi_ok( $post_ok, $doc ) {
if ( function_exists( 'mm_access_decision' ) ) {
$post_ok = mm_access_decision( array( 'id' => $doc, 'access' => 'true' ) );
}
return $post_ok;
}