デフォルトの項目をカスタム分類に追加するにはどうすればよいですか?


10

Wordpressのデフォルトの分類(Categories)には、デフォルトでUncategorizedという項目があります。デフォルトの項目を新しいカスタム分類に追加するにはどうすればよいですか?

functions.php:

// === CUSTOM TAXONOMIES === //
function my_custom_taxonomies() {
    register_taxonomy(
        'block',        // internal name = machine-readable taxonomy name
        'static_content',       // object type = post, page, link, or custom post-type
        array(
            'hierarchical' => true,
            'labels' => array(
                'name' => __( 'Blocks' ),
                'singular_name' => __( 'Block' ),
                'add_new_item' => 'Add New Block',
                'edit_item' => 'Edit Block',
                'new_item' => 'New Block',
                'search_items' => 'Search Block',
                'not_found' => 'No Block found',
                'not_found_in_trash' => 'No Block found in trash',
            ),
            'query_var' => true,    // enable taxonomy-specific querying
            'rewrite' => array( 'slug' => 'block' ),    // pretty permalinks for your taxonomy?
        )
    );
}
add_action('init', 'my_custom_taxonomies', 0);

編集:テーマがインストールされているときに分類項目をそこに置きたいだけです。空の用語に自動的に追加する必要はありません

回答:


8

ここを見てください:

https://web.archive.org/web/20150403012347/http://wordpress.mfields.org/2010/set-default-terms-for-your-custom-taxonomies-in-wordpress-3-0/

基本的には、save_postフックを使用して投稿の条件を確認し、分類法から空の場合はデフォルトの条件を追加する必要があります。

カスタム分類法で初期用語を設定するだけの場合は、を使用できますwp_insert_term()。おそらく、カスタム分類の作成に使用しているのと同じ関数に追加するのが最も簡単です。t3iosがコメントに追加するため、get_term()最初に呼び出し、戻り値がnullの場合(つまり、用語が存在しない場合)のみ用語を挿入する必要があります。

このサンプルコードは、Codexのコードです。http//codex.wordpress.org/Function_Reference/wp_insert_term

$parent_term = term_exists( 'fruits', 'product' ); // array is returned if taxonomy is given
$parent_term_id = $parent_term['term_id']; // get numeric term id
wp_insert_term(
  'Apple', // the term 
  'product', // the taxonomy
  array(
    'description'=> 'A yummy apple.', 
    'slug' => 'apple', 
    'parent'=> $parent_term_id
  )
);

@anu自分自身はあまり説明していなかったと思いますが、テーマがインストールされているときに分類法をそこに入れたかっただけです。空の場合は、用語を指定する必要はありません。
janoChen 2011年

@janoChen -私は答えに更新
ANU

@anuすばらしい。もっとあなたの答えに投票できたらいいのに。質問を編集しました。上記で記述したコードをどこに配置すればよいですか?
janoChen

私が追加したコードは単なる例であり(WordPress codexからのものです)、必要に応じて修正する必要があります。追加するのに最適な場所は、関数の右中括弧の直前です。
anu

1
その関数で挿入を実行してもよろしいですか、それはinitで実行されます。すべてのページ、ページが呼び出されるたびに挿入を実行したくないと思いますか?おそらく、一致する用語がその名前ですでに存在している場合、挿入関数はnull / falseを返します(私は調べていません)が、少し必要がないように見えます(get_term(s)を呼び出して、それが存在するかどうかを確認しないでください)。挿入しない場合)。
t31os

4

デフォルトのカテゴリは、wp_insert_post()関数内でハードコードされたケースです。

したがって、正確に複製することはできませんが、他の方法で処理できます。新しい投稿の投稿ステータスの移行にフックし、投稿の作成中に何も割り当てられていない場合は、必要なデフォルトの用語を割り当てようとします。


投稿ステータスフックにリンクするための+1、それがまさに私が探していたものです。
マット

0

Default Termプラグインを使用してこれを行うことができます

register_taxonomy( 'custom-tax', array('post'), array(
    'label'              => 'Custom Tag',
    'public'             => true,
    'show_ui'            => true,
    'default_term'       => 'Some Default Term', // Add this line to your code 
// then activate and deactivate the default term plugin to save the terms you set.
));

デフォルトでは、投稿が送信されると、チェックされている用語がない場合、デフォルトの用語が投稿に保存されます。階層分類と非階層分類の両方で機能します。


投稿作成ビューで指定された用語が自動的に選択され、ユーザーが何が起こるかを認識していると便利です。
Garconis 2017

0

カスタムタクソノミー「Days」に曜日を入力する必要がありました。クライアントが作成日をいじったり、そこに行って日やスペルミスを削除したりしたくありませんでした。上記のアドバイスに従って私はこれを思いつきましたが、それをコーディングするより簡潔な方法があるかどうか疑問に思っています:

 /*************************************** ...Create a Custom Taxonomy for days ******************************/
add_action( 'init', 'build_taxonomies', 0 );  
function build_taxonomies() {  
    register_taxonomy( 
    'days', 
    'schedule',
   array( 'hierarchical' => true, 
    'label' => 'Days',
    'query_var' => true, 
    'show_ui' => false, //removes the menus from admin menu and edit panel  
    'rewrite' => true ) );  

/*---------------------------------------Check to see if the days are created..if not, create them----*/
$parent_term = term_exists( 'days', 'days' ); // array is returned if taxonomy is given
$parent_term_id = $parent_term['term_id']; // get numeric term id

wp_insert_term(//this should probably be an array, but I kept getting errors..
        'Monday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'monday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Tuesday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'tuesday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Wednesday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'wednesday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Thursday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'thursday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Friday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'friday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Saturday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'saturday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Sunday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'sunday',
        'parent'=> $parent_term_id ));
}
/************ now I add my own meta box for days to get rid of extra controls *************/

add_action('admin_menu', 'add_custom_categories_box');
function add_custom_categories_box() {
 add_meta_box('myrelateddiv', 'Days*', 'ilc_post_related_meta_box', 'schedule', 'normal', 'low', array( 'taxonomy' => 'days' ));
}

function ilc_post_related_meta_box( $post, $box ) {
  $defaults = array('taxonomy' => 'related');
  if ( !isset($box['args']) || !is_array($box['args']) )
  $args = array();
  else
  $args = $box['args'];
  extract( wp_parse_args($args, $defaults), EXTR_SKIP );
  $tax = get_taxonomy($taxonomy);
?>

  <ul id="<?php echo $taxonomy; ?>checklist" class="list:<?php echo $taxonomy?> categorychecklist form-no-clear">
<?php
  wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids, 'checked_ontop' => FALSE ) )
?>
</ul>   
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.