Add formatting to Array
I’m finding it a little hard to follow based on your comments, however if you want to add a <div> around each other then change your second foreach statement to; foreach ($uc as $key => $value) { $user = get_userdata($key); $post_count = get_usernumposts($user->ID); if ($post_count) { $author_posts_url = get_author_posts_url($key); echo ‘<div class=”class-name-here”>’; echo ‘<li><a href=”‘ … Read more