Skip to content

Instantly share code, notes, and snippets.

@kadimi
Created December 5, 2018 10:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kadimi/9e7a5b34396bdd5a3cec22ee89d99b88 to your computer and use it in GitHub Desktop.
Save kadimi/9e7a5b34396bdd5a3cec22ee89d99b88 to your computer and use it in GitHub Desktop.
WooCommere Bookings - Check if current page is a bookable product
<?php
/**
* WooCommere Bookings - Check if current page is a bookable product.
* @return boolean True for bookable products, false otherwise
*/
function is_bookable_product() {
return is_product() && wc_get_product() instanceof WC_Product_Booking;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment