显示类别帖子列表?

时间:2013-07-07 18:57:16

标签: php wordpress

我需要按类别放置帖子链接,例如:

  

类别:

     

类别描述:lorem ipsum

     
      
  • 发布链接1
  •   
  • 发布链接2
  •   
  • 发布链接3
  •   

这是我的代码:

<?php
$args=array(
    'type' => 'courses',
    'taxonomy' => 'study_type',
    'orderby' => 'name',
    'order' => 'ASC'
);
$categories=get_categories($args);
foreach($categories as $category) { 
    echo '<h3 class="study-tax-title">'. $category->name .'</h3>';
    echo '<p>'. $category->description . '</p>';
    /*List of links should be here*/
} 

我是否需要放置另一个数组并执行wpquery,还是可以通过get_categories数组回显某些内容?

更新:

以下是我注册CPT和Tax的方式:

<?php

    if ( ! function_exists('custom_course_post_type') ) {

    // Register Custom Post Type
    function custom_course_post_type() {
      $labels = array(
        'name'                => _x( 'Courses', 'Post Type General Name', 'text_domain' ),
        'singular_name'       => _x( 'Course', 'Post Type Singular Name', 'text_domain' ),
        'menu_name'           => __( 'Courses', 'text_domain' ),
        'parent_item_colon'   => __( 'Parent Course', 'text_domain' ),
        'all_items'           => __( 'All Courses', 'text_domain' ),
        'view_item'           => __( 'View Course', 'text_domain' ),
        'add_new_item'        => __( 'Add New Course', 'text_domain' ),
        'add_new'             => __( 'New Course', 'text_domain' ),
        'edit_item'           => __( 'Edit Course', 'text_domain' ),
        'update_item'         => __( 'Update Course', 'text_domain' ),
        'search_items'        => __( 'Search Courses', 'text_domain' ),
        'not_found'           => __( 'No Courses found', 'text_domain' ),
        'not_found_in_trash'  => __( 'No Courses found in Trash', 'text_domain' ),
      );

      $rewrite = array(
        'slug'                => 'courses',
        'with_front'          => true,
        'pages'               => true,
        'feeds'               => true,
      );

      $args = array(
        'label'               => __( 'courses', 'text_domain' ),
        'description'         => __( 'Course information pages', 'text_domain' ),
        'labels'              => $labels,
        'supports'            => array( 'title', 'editor', 'excerpt', 'thumbnail', 'revisions', ),
        'taxonomies'          => array( 'vendors', 'level', 'study_type', 'post_tag' ),
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 5,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'query_var'           => 'course',
        'rewrite'             => $rewrite,
        'capability_type'     => 'post',
      );

      register_post_type( 'courses', $args );
    }

    // Hook into the 'init' action
    add_action( 'init', 'custom_course_post_type', 0 );

    }

    ?>
     <?php register_taxonomy_for_object_type( 'study_type', 'courses' ); ?> 
     <?php register_taxonomy_for_object_type( 'vendors', 'courses' ); ?> 
      <?php register_taxonomy_for_object_type( 'level', 'courses' ); ?> 
    <?php

    add_action('init', 'course_taxonomies', 0);

    function course_taxonomies(){
      register_taxonomy(
          'study_type',
          'courses',
          array(
            'hierarchical' => true,
            'label' => 'Area of Study',
            'query_var' => true,
            'rewrite' => true
            )
        );
      register_taxonomy(
          'vendors',
          'courses',
          array(
            'hierarchical' => true,
            'label' => 'Vendors',
            'query_var' => true,
            'rewrite' => true
            )
        );
       register_taxonomy(
          'level',
          'courses',
          array(
            'hierarchical' => true,
            'label' => 'Level of Study',
            'query_var' => true,
            'rewrite' => true
            )
        );
    }
    ?>

* *这是我更新的代码:

<?php
$args = array(
    'type' => 'courses',
    'taxonomy' => 'study_type',
    'orderby' => 'name',
    'order' => 'ASC'
);

$categories = get_categories($args);
foreach ($categories as $category) {
    echo '<h3 class="study-tax-title">' . $category->name . '</h3>';
    echo '<p>' . $category->description . '</p>';
    /* List of links should be here */

    $filtered_posts = query_posts('cat=' . $category->cat_ID);
    if ($filtered_posts) {
        echo '<ul>';
        foreach ($filtered_posts as $post) {
            echo '<li><a href="' . get_permalink($post->ID) . '">' . $post->post_title . '</a></li>';
        }
        echo '</ul>';

    }
}
?>

2 个答案:

答案 0 :(得分:1)

如果您要显示一个类别的帖子,则必须使用“ get_posts ”功能(此处有很多示例:http://codex.wordpress.org/Template_Tags/get_posts

但你可以尝试添加:

$args = array( 'posts_per_page' => 3, 'category' => id_number_of_your_category );
$myposts = get_posts( $args );
echo "<ul>";
foreach( $myposts as $post ) : setup_postdata($post); ?>
   <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; 
echo "</ul>";
?>

希望这是你想要的,并会帮助你!

答案 1 :(得分:1)

您可以按照以下方式执行此操作:

$args = array(
    /* 'type' => 'courses', */ 
    /* 'taxonomy' => 'study_type', */ // this only work if you have study_type as taxonomy, default taxonomy is category
    'orderby' => 'name',
    'order' => 'ASC'
);

$categories = get_categories($args);
foreach ($categories as $category) {
    echo '<h3 class="study-tax-title">' . $category->name . '</h3>';
    echo '<p>' . $category->description . '</p>';
    /* List of links should be here */

    $filtered_posts = get_posts(array('numberposts' => 3, 'category' => $category->cat_ID));
    if ($filtered_posts) {
        echo '<ul>';
        foreach ($filtered_posts as $post) {
            echo '<li><a href="' . get_permalink($post->ID) . '">' . $post->post_title . '</a></li>';
        }
        echo '</ul>';
    }
}

* 使用tax_query更新了代码:

$args = array(
    'type' => 'courses',
    'taxonomy' => 'study_type',
    'orderby' => 'name',
    'order' => 'ASC'
);

$categories = get_categories($args);
foreach ($categories as $category) {
    echo '<h3 class="study-tax-title">' . $category->name . '</h3>';
    echo '<p>' . $category->description . '</p>';
    /* List of links should be here */

    $filtered_posts = get_posts(
        array(
            'post_type' => 'courses',
            'tax_query' => array(
                array(
                    'taxonomy' => $category->taxonomy,
                    'field' => 'id',
                    'terms' => $category->term_id
                )
            )
        )
    );
    if ($filtered_posts) {
        echo '<ul>';
        foreach ($filtered_posts as $post) {
            echo '<li><a href="' . get_permalink($post->ID) . '">' . $post->post_title . '</a></li>';
        }
        echo '</ul>';
    }
}
相关问题