How to create a customized logout URL in BuddyPress

Does anyone know how to override the BuddyPress logout URL with a custom one?

Related posts

Leave a Reply

1 comment

  1. That’s the same as the regular WordPress logout URL. So you can use the same filter: 'logout_url'.

    Sample code, not tested:

    add_filter( 'logout_url', 'wpse_56866_logout_url' );
    function wpse_56866_logout_url() 
    {
        // set your URL here
        return 'http://example.com';
    }