LLMS_Analytics::get_orders_by_user( $user_id )
Description Description
Source Source
File: includes/class.llms.analytics.php
public static function get_orders_by_user( $user_id ) { //set up search arguments $values = array( '0' => array( 'key' => '_llms_user_id', 'value' => $user_id, 'compare' => '=', ), ); return self::get_orders( $values ); }
Expand full source code Collapse full source code View on GitHub