2012-11-19 47 views
0

我有一個自定義文章類型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' 
    ) 
)); 

回答

1

如果您的客戶端的分類只與clientgallery職位類型相關聯,那麼website.com/client/miller應該足以表明您clientgalleries爲該客戶的名單。我在我的網站上測試過它,它工作。或者我錯了?

+0

感謝您的回答!你知道如何命名檔案模板嗎? archive-client.php不起作用 – oliverspies

相關問題