Skip to main contentSkip to footer

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:

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

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Avada
Avada is one of the most popular WordPress themes on the market. All post types are not found Avada has…

Related Posts:

Comment Section:

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed