2012-08-04 129 views

回答

0

你爲什麼不創建一個新的職位類型? http://codex.wordpress.org/Post_Types

您可以將其設置爲不公開顯示。你可以這樣一些東西:

add_action('init', 'create_post_type'); 
function create_post_type() { 
    register_post_type('acme_product', 
     array(
      'labels' => array(
       'name' => __('Products'), 
       'singular_name' => __('Product') 
      ), 
     'public' => false, 
     'has_archive' => true, 
     ) 
    ); 
} 
相關問題