2013-08-07 73 views

回答

0

試試這個:

<?php 
add_action('init', 'create_post_type'); 
function create_post_type() { 
    register_post_type('news', 
    array(
     'labels' => array(
     'name' => __('News'), 
     'singular_name' => __('News') 
    ), 
     'capability_type' => 'post', 
     'public' => true, 
     'supports' => array(
     'title', 
     'editor', 
     'excerpt', 
     'trackbacks', 
     'custom-fields', 
     'revisions', 
     'thumbnail', 
     'author', 
     'page-attributes', 
    ) 
    ) 
); 
} 
register_taxonomy('news_category', 'news',array('label' => __('Categories'),'rewrite' => array('slug' => 'news_category'),'hierarchical' => true,)); 
?> 
相關問題