I'm trying to list some users using the get_users function.
An online learning plugin I use saves some data in user metadata as course_COURSEID_access_from. For example; If the course ID is 123, the metadata is saved as: course_123_access_from. And the value of this metadata is a timestamp. For example; 1600724678.
// First day of the month.
$first_day = strtotime( date( 'Y-m-01' ) );
// Last day of the month.
$last_day = strtotime( date( 'Y-m-t' ) );
$args = array(
'fields' => 'ID',
'role' => 'customer',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'course_%_access_from',
'value' => array( $first_day, $last_day ),
'type' => 'numeric',
'compare' => 'BETWEEN'
),
)
);
$users = get_users($args);
But I can not get any results. Where am I making a mistake?
How can I query on wordpress metadata based on dynamic meta_keys?
Based on Fabien's answer, I realized that I could solve this problem with a custom SQL query. And I created the following SQL query:
Thanks Fabien.