From 1ff55bb638fd0f787969021fc4cf1e7ed775265f Mon Sep 17 00:00:00 2001 From: Antoine M Date: Fri, 20 Mar 2026 16:59:57 +0100 Subject: [PATCH] CHORE Remove unnecessary whitespace in get_authors_linked_to_posts function --- includes/utilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/utilities.php b/includes/utilities.php index 912bfdf..a9b4ea3 100644 --- a/includes/utilities.php +++ b/includes/utilities.php @@ -382,7 +382,7 @@ function get_authors_linked_to_posts(array $post_ids) foreach ($post_ids as $post_id) { $post_authors = get_field('authors', $post_id); if (empty($post_authors)) continue; - + foreach ($post_authors as $author) { $author_id = is_object($author) ? $author->ID : (int) $author; if ($author_id) {