Woocommerce Subscriptions - Get Start date
问题 I'm trying to create a function that returns the start date of a users subscription. I'm using woocommerce and the subscriptions plugin. I had this code working, however, it returned a "depreciated" error in my debug.log - and was also VERY slow loading: function subscriber_start_date() { global $current_user; $user = wp_get_current_user(); // Set start date to initial value $start_date = FALSE; // Get ALL subscriptions $subscriptions = WC_Subscriptions_Manager::get_users_subscriptions( $user