function get_activity_by_id($activity_id) { global $wpdb; $table_name = $wpdb->prefix . 'group_activities'; return $wpdb->get_row($wpdb->prepare("SELECT * FROM $table_name WHERE id = %d", $activity_id)); } function get_tasks_grouped_by_section($activity_id) { global $wpdb; $table_name = $wpdb->prefix . 'group_activity_tasks'; $results = $wpdb->get_results($wpdb->prepare("SELECT * FROM $table_name WHERE activity_id = %d", $activity_id)); $grouped = []; foreach ($results as $task) { $grouped[$task->section_title][] = $task; } return $grouped; }
Please confirm you want to block this member.
You will no longer be able to:
Please note: This action will also remove this member from your connections and send a report to the site admin. Please allow a few minutes for this process to complete.