Advertisement
vapvarun

Modify the query to show only activities from the last 7 days

Oct 28th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. function wbcom_filter_activity_feed_by_date( $args ) {
  2.     // Get the current date and calculate the date for 7 days ago.
  3.     $seven_days_ago = date( 'Y-m-d H:i:s', strtotime( '-7 days' ) );
  4.  
  5.     // Modify the query to show only activities from the last 7 days.
  6.     $args['date_query'] = array(
  7.         array(
  8.             'after' => $seven_days_ago,
  9.             'inclusive' => true,
  10.         ),
  11.     );
  12.  
  13.     return $args;
  14. }
  15. add_filter( 'bp_after_has_activities_parse_args', 'wbcom_filter_activity_feed_by_date' );
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement