0
我在頁面模板中使用此數據,我希望找到一個解決方案來填充'XXXXX'空間,並選擇當前選定的分類'位置'。我不認爲我可以在數組中做do_shortcode。我不擅長php或wordpress。提前致謝。使用當前頁分類術語填充數組數據
$pages = get_posts(array(
'post_type' => 'directory_listing',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'place',
'field' => 'id',
//'terms' => 'the-damn-bar',
'terms' => 'XXXXX',
'include_children' => false
)
))
);
foreach ($pages as $mypost) {
echo '<div class="specialList">';
echo $mypost->post_content . '<br/>';
echo '</div>';
}
?>