我想在wordpress中的自定义模板页面上显示分类数据

时间:2015-10-17 04:49:23

标签: wordpress taxonomy custom-taxonomy

我想在自定义模板页面上显示Taxonomy数据。

我使用get_object_texonomies()函数,但我得到了完整的分类。

2 个答案:

答案 0 :(得分:0)

根据您的分类法类型替换 $ type

<?php
$type = 'products';
$args=array(
  'post_type' => $type,
  'post_status' => 'publish',
  'posts_per_page' => -1,
  'caller_get_posts'=> 1

$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  while ($my_query->have_posts()) : $my_query->the_post(); ?>
    <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
    <?php
  endwhile;
}
wp_reset_query();  // Restore global post data stomped by the_post().
?>

答案 1 :(得分:0)

使用与此类似的内容:

<?php 

   $taxonomy_objects = get_object_taxonomies( 'products', 'sports' );
   print_r( $taxonomy_objects);

?>

参考:

https://codex.wordpress.org/Function_Reference/get_object_taxonomies