我有一個自定義文章類型clientgallery
和自定義分類標準client
。自定義分類學元素的WordPress壓縮頁面
要獲得所有畫廊,我可以輸入website.com/clientgallery。
但我想說明一個特定的客戶端的唯一的畫廊,如:website.com/clientgallery/miller
所以,miller
應該像一個GET參數。
我已經知道如何通過客戶端獲取畫廊,但我不知道如何獲取參數部分的工作。
$args = array(
'numberposts' => -1, //limit the number of posts, set 0 if no limit required.
'orderby' => 'post_date', //order by post_date field.
'order' => 'DESC', //order by descending oder.
'post_type' => 'clientgallery', //the post type is custom post type 'News & Events'
'post_status' => 'publish', //post status is 'publish'
'tax_query' => array(
array(
'taxonomy' => 'client', //custom taxonomy slug
'field' => 'slug', //select taxonomy term by slug
'terms' => $_GET['client'] //taxonomy term is called 'home-page'
)
));
感謝您的回答!你知道如何命名檔案模板嗎? archive-client.php不起作用 – oliverspies