我正在使用wp_get_archives檢索發佈在我的自定義帖子類型「下載」中的帖子的每月日期列表。wp_get_archives自定義帖子類型不工作?
但它不工作,我做錯了什麼?
我使用workpress 3.3
感謝
CODE
<?php $args = array(
'post_type' => 'download',
'type' => 'monthly',
'show_count' => '1'
); ?>
<?php wp_get_archives($args); ?>
這是怎麼我註冊了我的自定義信息類型僅供參考
// Downloads Post Type
add_action('init', 'create_post_type');
function create_post_type() {
$args = array(
'labels' => post_type_labels('Download'),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'has_archive' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'taxonomies' => array('group'),
'supports' => array('title',
'editor',
'author',
'thumbnail',
'excerpt',
'comments'
)
);
register_post_type('download', $args);
}
嗯,你有沒有試過這個嗎?我已經嘗試了很多querys和本文中的查詢,但沒有太多的運氣。 – Joshc