我需要按类别放置帖子链接,例如:
类别:
类别描述: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>';
}
}
?>