Wordpress查询术语分类法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress查询术语分类法相关的知识,希望对你有一定的参考价值。
$mf_query = <<<EOF     SELECT t.*, tt.*, p.*     FROM {$wpdb->posts} as p, {$wpdb->term_relationships} as tr, {$wpdb->terms} AS t, {$wpdb->term_taxonomy} AS tt     WHERE tt.`taxonomy` = 'bodies-of-work'     AND t.`term_id` = tt.`term_id`     AND tr.`object_id` = p.`ID`     and tt.`term_taxonomy_id` = tr.`term_taxonomy_id`     AND tt.`count` > 0     GROUP BY t.`term_id`     ORDER BY p.`post_date` DESC EOF; $mf_terms = $wpdb->get_results( $mf_query );     print " " . '<ul>';     foreach ( $mf_terms as $mf_term ) {         print " " . '<li><a href="' . get_term_link( $mf_term, $mf_term->taxonomy ) . '">' . $mf_term->name . '</a></li>';     }     print " " . '</ul>'; }Â
以上是关于Wordpress查询术语分类法的主要内容,如果未能解决你的问题,请参考以下文章