问题描述

基本上我有一个自定义的帖子类型的’products’ 它有两个分类法附加它… 正常的’category’ 和一个自定义分类称为’brands’ 。

我有一个 「品牌」 具体的页面。在这个页面上,我想列出所有的 「产品类别」,其中包含一个名为 「品牌」 的页面。

例如。说我在 「耐克」 页面。我想让它列出所有有 「产品」 的类别,并附上 「耐克」 品牌。

我的初步想法是使用 get_categories,但是现在可以定义一个特定的分类法或’brand’?

$categories = get_categories('orderby=name&depth=1&hide_empty=0&child_of='.$cat);

任何人之前做过这样的事情或者知道一种直接查询数据库以获得所需结果的方法?

非常感谢任何帮助,谢谢

最佳解决方法

嗨 @daveaspi:

你想做的是 WordPress 核心中常见的但不是很好的处理。有可能没有自定义 SQL 的方法,但我不认为它们会扩展大量的帖子。以下是我写的一个函数,叫做 get_cross_referenced_terms(),它将会得到你想要的内容,并附有一个例子,如何使用它。

以下代码可以放在您的 WordPress 站点根 test.php 文件中,以查看它的工作。然后,您可以将功能 get_cross_referenced_terms()复制到您的主题的 functions.php 文件或.php 文件中您可能正在使用的插件:

<?php 

  include('wp-load.php');

  $nike = get_term_by('slug','nike','brand'); // This here just to illustrate

  $terms = get_cross_referenced_terms(array(
    'post_type'        => 'product',
    'related_taxonomy' => 'brand',
    'term_id'          => $nike->term_id,
  ));
  foreach($terms as $term) {
    echo "<p>{$term->name}</p>";
  }

function get_cross_referenced_terms($args) {
  global $wpdb;
  $args = wp_parse_args($args,array(
    'post_type'        => 'post',
    'taxonomy'         => 'category',
    'related_taxonomy' => 'post_tag',
    '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_term_taxonomy.taxonomy<>{$wpdb->term_taxonomy}.taxonomy OR 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
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;
}

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。