我有一个非常先进的问题,希望这里有人可以帮助我。我有以下内容:
自定义帖子类型'产品'
'品牌'的自定义分类
&安培; “类别”的标准分类
每个“产品”都标有“品牌”,并放在父母和子女类别
我需要做以下事情:
archive.php页面显示所有“产品”的“类别”,这些“产品”具有“品牌”分类标准,其值为“品牌”页面。 由于@MikeSchinkel
,这可以正常使用下面的功能$term = get_query_var('term');
$brand = get_term_by('slug',$term,'brands'); // This here just to illustrate
$categories = get_cross_referenced_terms(array(
'post_type' => 'Products',
'taxonomy' => 'category',
'related_taxonomy' => 'brands',
'term_id' => $brand->term_id
));
使用以下功能:
// query to get categories for a specific tag
function get_cross_referenced_terms($args) {
global $wpdb;
$args = wp_parse_args($args,array(
'post_type' => 'Products',
'taxonomy' => 'category',
'related_taxonomy' => 'brands',
'term_id' => 0,
));
extract($args);
$sql = <<<SQL
SELECT DISTINCT
{$wpdb->terms}.*,
COUNT(*) AS post_count
FROM
{$wpdb->terms}
INNER JOIN {$wpdb->term_taxonomy} ON {$wpdb->terms}.term_id={$wpdb->term_taxonomy}.term_id
INNER JOIN {$wpdb->term_relationships} ON {$wpdb->term_taxonomy}.term_taxonomy_id={$wpdb->term_relationships}.term_taxonomy_id
INNER JOIN {$wpdb->posts} ON {$wpdb->term_relationships}.object_id={$wpdb->posts}.ID
INNER JOIN {$wpdb->term_relationships} related_relationship ON {$wpdb->posts}.ID=related_relationship.object_id
INNER JOIN {$wpdb->term_taxonomy} related_term_taxonomy ON related_relationship.term_taxonomy_id=related_term_taxonomy.term_taxonomy_id
INNER JOIN {$wpdb->terms} related_terms ON related_term_taxonomy.term_id=related_terms.term_id
WHERE 1=1
AND related_terms.term_id<>{$wpdb->terms}.term_id
AND {$wpdb->posts}.post_type='%s'
AND {$wpdb->term_taxonomy}.taxonomy='%s'
AND related_term_taxonomy.taxonomy='%s'
AND related_terms.term_id=%d
AND {$wpdb->term_taxonomy}.parent=0
GROUP BY
{$wpdb->terms}.term_id
SQL;
$sql = $wpdb->prepare($sql,$post_type,$taxonomy,$related_taxonomy,$term_id);
$terms = $wpdb->get_results($sql);
return $terms;
}
这会显示指定品牌的所有类别,并且可以使用。但现在我需要它能够为类别页面设置'child_of'。所以我需要添加(我认为)的是查询类别ID或指定父类别的能力。类似的东西:
'child_of' => $parent_category
我认为这可能是我可以在数据库查询中添加的内容:
AND {$wpdb->term_taxonomy}.parent=0
但它有点超出我的联盟!如果有人能帮助我,我会非常感激!
三江源
戴夫
答案 0 :(得分:0)
AND {$wpdb->term_taxonomy}.parent=[$term_id}
如果您只想要传递品牌的孩子,否则如果您需要单独传递,可以在提供的功能中添加args
例如:
'term_id' => 0,
'parent_id' => 0,
));
然后在下面你会使用那个新变量
AND {$wpdb->term_taxonomy}.parent=[$parent_id}