ID; $awpa_post_authors = get_post_meta($post_id, 'wpma_author'); $enable_author_metabox_for_post = get_option('awpa_author_metabox_integration'); $multiauthor_settings = false; if ($enable_author_metabox_for_post && $enable_author_metabox_for_post['enable_author_metabox'] == true) { $multiauthor_settings = true; } if (isset($awpa_post_authors) && !empty($awpa_post_authors) && $multiauthor_settings == true) { foreach ($awpa_post_authors as $key => $author_id) { $needle = 'guest-'; if (strpos($author_id, $needle) !== false) { $filter_id = substr($author_id, strpos($author_id, "-") + 1); $author_id = $filter_id; $author_type = 'guest'; } else { $author_id = $author_id; $author_type = 'default'; } morenews_author_list($post_id, $author_id, $author_type, $gravatar); if ($key != (count($awpa_post_authors) - 1)) { echo ","; } } } else { $author_id = $post->post_author; $author_name = get_the_author_meta('display_name', $author_id); ?> post_author; $author_name = get_the_author_meta('display_name', $author_id); ?> display_name); ?> get_guest_by_id($author_id); if ($guest_user_data) { if ($gravatar == true) { echo get_avatar($guest_user_data->user_email, 150); } echo esc_html($guest_user_data->display_name); } } } }