0
我在用用戶標識查詢帖子。在這種情況下,用戶ID將是另一篇文章的作者。按用戶標識查詢帖子
我做了以下嘗試,但它沒有得到'作者參數'。
$author_id = $post->post_author;
$author_query_id = array('author='. $author_id, 'showposts' => '1', 'post_type'=> 'bedrijven', 'post_status' => 'any');
$author_posts_id = new WP_Query($author_query_id);
while($author_posts_id->have_posts()) : $author_posts_id->the_post();
if (get_field('standplaats')) { ?>
<div class="fieldje field-3"><p>
<span>Standplaats: <?php echo the_field('standplaats'); ?></span>
</p></div>
<?php }
endwhile;
我得到的用戶ID是正確的(捕獲在$ author_id中)。然而,在查詢中,只是查詢帖子類型「Bedrijven」的最後一篇文章,無論作者是誰。
任何想法,爲什麼這不工作?
謝謝!
謝謝!奇怪的是,我從那個開始,但後來它沒有工作..可能是一個小小的錯字。 – Trekdrop