Count favorite from last week
-
Hi
I try to get favorite count from last week or month.
I usually use your fillter funtion.
So put some php like this.
But it’s not right code.$filtersmonth = array(
‘terms’ => array(
‘category’ => array($cat_id)),
‘date_query’ => array(
‘after’ => ‘1 week ago’
));
foreach ( $blogusers as $user ) {
$smonth += absint( get_user_favorites_count($user_id = $user->id, $site_id = null, $filters = $filtersmonth));}Is there a way to get args only 1week??
- The topic ‘Count favorite from last week’ is closed to new replies.