Wordpress的A-Z类别索引

时间:2012-10-16 03:33:36

标签: mysql wordpress plugins indexing categories

有没有人看到任何wordpress插件提供了按字母顺序排列的类别索引,可以将您带到属于特定字母的类别页面。基本上,有一个列表:A B C D ... X Y Z,您可以单击,当您单击A时,您将转到一个页面,您可以在其中看到以字母A开头的所有类别?

我已经搜索了一个多小时但找不到这个...我开始搞乱MySQL执行此SELECT term_id as id, name as post_title FROM wp_terms ORDER BY name但这也包括类别中的标记,我只想抓住类别。< / p>

更新

好的,所以看起来我可以通过类似的方式从wp_term_taxonomy中获取类别:

SELECT term_taxonomy_id FROM wp_term_taxonomy WHERE taxonomy =  'category'

然后,我可以把这个数组运行到这里:

SELECT term_id, name FROM wp_terms WHERE term_id IN (that-array) ORDER BY name
那是怎么回事?如何使用我上面的内容创建一个新表?

2 个答案:

答案 0 :(得分:0)

您可以使用此功能并将字母作为参数传递

  function get_category_by_letter($letter){
    $args=array(
    'orderby' => 'name',
    'order' => 'ASC',
    'hide_empty' => 0);

    $categories=get_categories($args);
    foreach($categories as $category) {

    $catname = $category->name;
    $first_letter = substr(strip_tags($catname), 0 , 1); // get the first letter of the category
    if(strcasecmp($first_letter,$letter) != 0) continue; //if not the same letter then loop next NOTE: this is case insensitive comparison
    else{
      $cats[] = $category->term_id; //store category IDs in array
      //$cats[] = $category->name; uncomment this if you want to get category name
      //or you can start your process here and remove the return value  
        }
    }
 return $cats;
}

使用示例

  $cats = get_category_by_letter('A');
  var_dump($cats);

答案 1 :(得分:0)

您可以使用transient api来缓存您的SQL查询。