Skip to content

Instantly share code, notes, and snippets.

@Welland
Created June 18, 2014 15:38
Show Gist options
  • Save Welland/d4c106e38f349bd68c6a to your computer and use it in GitHub Desktop.
Save Welland/d4c106e38f349bd68c6a to your computer and use it in GitHub Desktop.
WooCommerce - Logout URL
$myaccount_page_id = get_option( 'woocommerce_myaccount_page_id' );
if ( $myaccount_page_id ) {
$logout_url = wp_logout_url( get_permalink( $myaccount_page_id ) );
//make ssl if needed
if ( get_option( 'woocommerce_force_ssl_checkout' ) == 'yes' )
$logout_url = str_replace( 'http:', 'https:', $logout_url );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment