2012-04-20 12 views
5

Ho appena creato un tipo di post personalizzato. Come faccio a visualizzare il pannello Tag nella barra laterale uguale a quello che ha il tipo di post post?Mostra pannello tag in tipo di post personalizzato

+0

mi puoi mostrare il codice aggiunto nel allora functions.php per creare il tipo di messaggio personalizzato? –

risposta

10

aggiungere questa riga alla sezione che si register_post_type in functions.php nella cartella del tema

'taxonomies' => array('category', 'post_tag') 

Il codice completo è simile a questo

add_action('init', 'create_post_type'); 
function create_post_type() { 
register_post_type('posttypename', 
     array(
      'labels' => array(
       'name' => __('PostTypeName'), 
       'singular_name' => __('PostTypeName') 
      ), 
      'public' => true, 
      'has_archive' => true, 
      'rewrite' => array('slug' => 'posttypename'), 
      'supports' => array('title', 'editor', 'excerpt', 'custom-fields', 'thumbnail'), 
      'taxonomies' => array('category', 'post_tag') // this is IMPORTANT 
     ) 
    ); 
} 
+0

Questo era quello che stavo cercando: ''tassonomie' => array ('categoria', 'post_tag')'. Grazie, Chandu! – enchance

4

Se si utilizza 'taxonomies' => array('category', 'post_tag') tag di un articolo, di default, allora wordpress verrà visualizzato nell'area del tipo di post personalizzato.

Ecco il modo pulito e unico per il tipo di post "news". Nessun mix con altri tipi di post personalizzati, tag predefiniti, ecc.

Puoi seguire tutti i dettagli di "create custom post types and tags with categories" from this link.

add_action('init', 'news_tag_taxonomies'); //change order add_action('init', 'news_tag_taxonomies', 0); 

//create two taxonomies, genres and tags for the post type "tag" 
function news_tag_taxonomies() 
{ 
    // Add new taxonomy, NOT hierarchical (like tags) 
    $labels = array(
    'name' => _x('Tags', 'taxonomy general name'), 
    'singular_name' => _x('Tag', 'taxonomy singular name'), 
    'search_items' => __('Search Tags'), 
    'popular_items' => __('Popular Tags'), 
    'all_items' => __('All Tags'), 
    'parent_item' => null, 
    'parent_item_colon' => null, 
    'edit_item' => __('Edit Tag'), 
    'update_item' => __('Update Tag'), 
    'add_new_item' => __('Add New Tag'), 
    'new_item_name' => __('New Tag Name'), 
    'separate_items_with_commas' => __('Separate tags with commas'), 
    'add_or_remove_items' => __('Add or remove tags'), 
    'choose_from_most_used' => __('Choose from the most used tags'), 
    'menu_name' => __('Tags'), 
); 

    register_taxonomy('tag','news',array(// replace your post type with "news" 
    'hierarchical' => false, 
    'labels' => $labels, 
    'show_ui' => true, 
    'update_count_callback' => '_update_post_term_count', 
    'query_var' => true, 
    'rewrite' => array('slug' => 'tag'), 
)); 
} 

Spero che questo sarebbe di aiuto.

+1

grazie ... questo è stato molto utile – mostafaznv

1

Tutto quello che ho bisogno di aggiungere a parte template WP codice predefinito è stato

'taxonomies' => array('post_tag'),  
Problemi correlati