web-dev-qa-db-fra.com

Ajouter un support de taxonomie de catégorie à un type de publication personnalisé

J'écris un code qui fait un usage intensif des types de publication personnalisés - et je cherche un moyen d'ajouter par programme une catégorie à un type de publication personnalisé défini, puis d'accéder à son ID de catégorie.

J'avais un problème, mais je n'arrive pas à trouver un moyen robuste d'y parvenir. Wp_create_category serait un choix évident, mais bien sûr, cela ne prend pas en charge les types d'articles personnalisés.

3
George Pearce

si vous avez besoin de pré-créer certains termes, vous pouvez ajouter ce qui suit dans la fonction init qui enregistre la taxonomie. il créera le terme foo dans la taxonomie des enregistrements

if (!term_exists( 'foo', 'recordings') ){
        wp_insert_term( 'foo', 'recordings' );
    })
2
helgatheviking

Dans votre register_post_type, vous pouvez ajouter le paramètre taxonomies.

register_post_type('discography',
    array(
    'labels' => array(
             //your label stuff
             ),

  'taxonomies' => array('recordings', 'category', 'whatever'),  //add this....

  'public' => true,
  'show_ui' => true,
  'exclude_from_search' => true,
  'hierarchical' => true,
  'supports' => array( 'title', 'editor', 'thumbnail' ),
  'query_var' => true
        )
  );

Vous pouvez également utiliser register_taxonomy_for_object_type, http://codex.wordpress.org/Function_Reference/register_taxonomy_for_object_type

5
Wyck

S'il vous plaît mettre ce code dans le thème functions.php

function post_type_discog() {

register_post_type('discography',
    array(
    'labels' => array(
            'name' => __( 'Discography' ),
            'singular_name' => __( 'Discography' ),
            'add_new' => __( 'Add New' ),
            'add_new_item' => __( 'Add New Discography' ),
            'edit' => __( 'Edit' ),
            'edit_item' => __( 'Edit Discography' ),
            'new_item' => __( 'New Discography' ),
            'view' => __( 'View Discography' ),
            'view_item' => __( 'View Discography' ),
            'search_items' => __( 'Search Discographys' ),
            'not_found' => __( 'No Discographys found' ),
            'not_found_in_trash' => __( 'No Discographys found in Trash' ),
            'parent' => __( 'Parent Discography' ),
        ),
  'public' => true,
  'show_ui' => true,
        'exclude_from_search' => true,
        'hierarchical' => true,
        'supports' => array( 'title', 'editor', 'thumbnail' ),
        'query_var' => true
        )
  );
}
add_action('init', 'post_type_discog');

add_action( 'init', 'create_discog_taxonomies', 0 );

function create_discog_taxonomies()
{
  // Add new taxonomy, make it hierarchical (like categories)
  $labels = array(
    'name' => _x( 'Recordings', 'taxonomy general name' ),
    'singular_name' => _x( 'Recording', 'taxonomy singular name' ),
    'search_items' =>  __( 'Search Recordings' ),
    'popular_items' => __( 'Popular Recordings' ),
    'all_items' => __( 'All Recordings' ),
    'parent_item' => __( 'Parent Recording' ),
    'parent_item_colon' => __( 'Parent Recording:' ),
    'edit_item' => __( 'Edit Recording' ),
    'update_item' => __( 'Update Recording' ),
    'add_new_item' => __( 'Add New Recording' ),
    'new_item_name' => __( 'New Recording Name' ),
  );
  register_taxonomy('recordings',array('discography'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'query_var' => true,
    'rewrite' => array( 'slug' => 'recordings' ),
  ));
}

Dans ce code, vous pouvez créer un type de publication personnalisé et un type de catégorie personnalisé. Puisse ce code vous aider.

2
Arvind Pal