Custom logout redirection

Use this code snippet to set custom logout redirection on your child sites.

Snippet Type

Execute on Child Sites

Snippet:

add_filter( 'wplr_home_url', function( $url ) {
    return "https://sitedomain.com/store/";
} );