WooCommerce example : Disable admin bar

Disable the admin bar in WooCommerce examples.

add_action( 'wp', function () {
	if ( ! current_user_can( 'manage_options' ) ) {
		show_admin_bar( false );
	}
} );