Skip to content

Instantly share code, notes, and snippets.

View JonathanPort's full-sized avatar
☀️
Good morning

Jonathan Port JonathanPort

☀️
Good morning
  • www.JonathanPort.com
  • United Kingdom
View GitHub Profile
@chrisvanpatten
chrisvanpatten / order_has_trial.php
Created November 18, 2015 15:00
Function to check if a WooCommerce order contains a free trial (via the Subscriptions extension)
<?php
/**
* Loop through an order's items and see if there's a free trial set
*
* @param WC_Order $order
* @return bool|WP_Error
*/
function custom_order_has_trial( $order ) {
if ( ! $order instanceof WC_Order )