カスタム投稿タイプclientgallery
とカスタム分類法がありclient
ます。
すべてのギャラリーを取得するには、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'
)
));