2012-08-04 100 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, 
     ) 
    ); 
} 
相关问题