我有一个自定义的分类页面,它也有一个向上的滑块。问题是滑块显示来自所有分类法而非当前分类法的随机帖子。是否有办法过滤滑块中的图像,使其仅使用当前分类法?
<?php
global $taxonomy_location_url, $taxonomy_profile_url;
$args = array(
\'post_type\' => $taxonomy_profile_url,
\'orderby\' => \'rand\',
\'meta_query\' => array( array(\'key\' => \'featured\', \'value\' => \'1\', \'compare\' => \'=\', \'type\' => \'NUMERIC\') ),
\'posts_per_page\' => get_option("slideritems")
);
$q = query_posts($args);
if ( have_posts()) :
while ( have_posts() ) : the_post();
$category = wp_get_post_terms(get_the_ID(), $taxonomy_location_url);
$linktitle = get_the_title();
$imagealt = get_the_title();
?>