Nie mogę pobrać identyfikatora autora postu poza pętlę, aby funkcja get_the_author_meta działała. Do tej pory próbowałem różnych podejść:
1.
$author_id=$post->post_author;
2)
global $post;
$author_id=$post->post_author;
3)
$post_tmp = get_post($post_id);
$author_id = $post_tmp->post_author;
4
$author_id = $posts[0]->post_author;
Potrzebuję ID autora, aby przekazać go:
$address = get_the_author_meta('user_email', $author_id);
Jakieś sugestie?