WordPress管理画面のカテゴリ、タグ、カスタム分類編集画面にフィールドを追加しますか?


33

質問は「ある私はWordPressの管理にカテゴリー、タグとカスタム分類編集画面に1つ以上のフィールドを追加するにはどうすればよいですか?」この質問をされた上で尋ねたのwp-ハッカーは、リスト 8月1日2010年と私は解決策を提供し、その日以降。元アスカーは、再び問題が議論ソリューションのことを思い出し、今日(8月21日)を。一般的なニーズになる可能性があるため、他の人が将来見つけることができるように、ここにコードを含むソリューションを投稿することにしました。


こんにちはマイク、コードを回答ボックスに投稿した方が良いと思います。そうすれば、githubがダウンした場合に備えて、ここにバックアップがあります。
アリエフバユ

@サイレント:ねえ、私はそれに取り組んでいます。:)中途半端ですが、壁にぶつかったので寝る必要があります。完了したら、次のようになります(何か):wordpress.stackexchange.com/questions/578/#582
MikeSchinkel

これに関する開発はありますか?私は...種類興味の実際よ:D
ジョン・P・ブロッホ

こんにちは、@ John P Bloch:私のクライアントは私をピン止めし、時間がありませんでした。うまくいけば
...-MikeSchinkel

@John P Bloch私は実際に試してみましたが、うまく機能します。親カテゴリなしで特定のカテゴリを「グループ化」する必要がありました。
アミット

回答:


23

これらの助けを借りて、カテゴリに新しいフィールド 'picture'(入力タイプファイル)を追加しました

add_action('category_edit_form_fields','category_edit_form_fields');
add_action('category_edit_form', 'category_edit_form');
add_action('category_add_form_fields','category_edit_form_fields');
add_action('category_add_form','category_edit_form');


function category_edit_form() {
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#edittag').attr( "enctype", "multipart/form-data" ).attr( "encoding", "multipart/form-data" );
        });
</script>
<?php 
}

function category_edit_form_fields () {
?>
    <tr class="form-field">
            <th valign="top" scope="row">
                <label for="catpic"><?php _e('Picture of the category', ''); ?></label>
            </th>
            <td>
                <input type="file" id="catpic" name="catpic"/>
            </td>
        </tr>
        <?php 
    }

任意の分類法を自由に使用できcategory、分類法名に置き換えるだけです


これは優れているが、あなたはカスタム分類にこれを追加したい場合は、1つが正しく、このカスタマイズを統合する方法を説明します(または可能性の例を提供)してください可能性-例えば、「人」
NetConstructor.com

2
更新-これをテストするために上記の正確なコードをコピーしましたが、ファイルは保存されていないか、少なくとも表示されていません。ファイルを保存する場所、そのフォルダーのアクセス許可を編集する必要があるかもしれません(さらに良いことに、保存したフォルダーの場所を変更する方法を説明できますか?)ファイルを選択して用語を保存しようとすると、ファイル以外のすべてが保存されるため、アップロードされた画像が表示されません。
NetConstructor.com

9

また、そのフィールドをカスタム分類フォームに追加する場合は、add_action関数内のカテゴリをカスタム分類名に置き換えるだけです。

例:

add_action('{custom_taxonomy}_edit_form_fields','category_edit_form_fields');
add_action('{custom_taxonomy}_edit_form', 'category_edit_form');
add_action('{custom_taxonomy}_add_form_fields','category_edit_form_fields');
add_action('{custom_taxonomy}_add_form','category_edit_form');

2

タグフォームフィールドにフックする場合、フックは少し異なります。

add_tag_form_fields

あなたが期待するようにtag_add_form_fieldsの代わりに


1

これは少し前に尋ねられたことに気付きましたが、WordPressが少し変更されたため、カスタムフィールドを分類法に追加するプロセスを簡素化し、オプションで各フィールドの用語テーブルに列を追加できる小さなスクリプトを開発することにしました。このスクリプトはamarkal-taxonomyと呼ばれ、Amarkal WordPressフレームワークの一部です。

を使用amarkal-taxonomyして、カスタムフィールドを追加すると、次の作業が簡単になります。

// Add a text field to the 'category' taxonomy 'add' & 'edit' forms:
amarkal_taxonomy_add_field('category', 'cat_icon', array(
    'type'        => 'text',
    'label'       => 'Icon',
    'description' => 'The category\'s icon',
    'table'       => array(
        'show'      => true,  // Add a column to the terms table
        'sortable'  => true   // Make that column sortable
    )
));

// Then you can retrieve the data using:
$icon = get_term_meta( $term_id, 'cat_icon', true );

1

追加の画像を追加し、名前が保険であるカスタム分類に追加の画像を削除しました。

/**
 * Plugin class
 **/
if ( ! class_exists( 'CT_TAX_META' ) ) {

class CT_TAX_META {

  public function __construct() {
    //
  }

 /*
  * Initialize the class and start calling our hooks and filters
  * @since 1.0.0
 */
 public function init() {
   add_action( 'insurance_add_form_fields', array ( $this, 'add_category_image' ), 10, 2 );
   add_action( 'created_insurance', array ( $this, 'save_category_image' ), 10, 2 );
   add_action( 'insurance_edit_form_fields', array ( $this, 'update_category_image' ), 10, 2 );
   add_action( 'edited_insurance', array ( $this, 'updated_category_image' ), 10, 2 );
   add_action( 'admin_enqueue_scripts', array( $this, 'load_media' ) );
   add_action( 'admin_footer', array ( $this, 'add_script' ) );
 }

public function load_media() {
 wp_enqueue_media();
}

 /*
  * Add a form field in the new category page
  * @since 1.0.0
 */
 public function add_category_image ( $taxonomy ) { ?>
   <div class="form-field term-group">
     <label for="category-image-id"><?php _e('Image', 'hero-theme'); ?></label>
     <input type="hidden" id="category-image-id" name="category-image-id" class="custom_media_url" value="">
     <div id="category-image-wrapper"></div>
     <p>
       <input type="button" class="button button-secondary ct_tax_media_button" id="ct_tax_media_button" name="ct_tax_media_button" value="<?php _e( 'Add Image', 'hero-theme' ); ?>" />
       <input type="button" class="button button-secondary ct_tax_media_remove" id="ct_tax_media_remove" name="ct_tax_media_remove" value="<?php _e( 'Remove Image', 'hero-theme' ); ?>" />
    </p>
   </div>
 <?php
 }

 /*
  * Save the form field
  * @since 1.0.0
 */
 public function save_category_image ( $term_id, $tt_id ) {
   if( isset( $_POST['category-image-id'] ) && '' !== $_POST['category-image-id'] ){
     $image = $_POST['category-image-id'];
     add_term_meta( $term_id, 'category-image-id', $image, true );
   }
 }

 /*
  * Edit the form field
  * @since 1.0.0
 */
 public function update_category_image ( $term, $taxonomy ) { ?>
   <tr class="form-field term-group-wrap">
     <th scope="row">
       <label for="category-image-id"><?php _e( 'Image', 'hero-theme' ); ?></label>
     </th>
     <td>
       <?php $image_id = get_term_meta ( $term -> term_id, 'category-image-id', true ); ?>
       <input type="hidden" id="category-image-id" name="category-image-id" value="<?php echo $image_id; ?>">
       <div id="category-image-wrapper">
         <?php if ( $image_id ) { ?>
           <?php echo wp_get_attachment_image ( $image_id, 'thumbnail' ); ?>
         <?php } ?>
       </div>
       <p>
         <input type="button" class="button button-secondary ct_tax_media_button" id="ct_tax_media_button" name="ct_tax_media_button" value="<?php _e( 'Add Image', 'hero-theme' ); ?>" />
         <input type="button" class="button button-secondary ct_tax_media_remove" id="ct_tax_media_remove" name="ct_tax_media_remove" value="<?php _e( 'Remove Image', 'hero-theme' ); ?>" />
       </p>
     </td>
   </tr>
 <?php
 }

/*
 * Update the form field value
 * @since 1.0.0
 */
 public function updated_category_image ( $term_id, $tt_id ) {
   if( isset( $_POST['category-image-id'] ) && '' !== $_POST['category-image-id'] ){
     $image = $_POST['category-image-id'];
     update_term_meta ( $term_id, 'category-image-id', $image );
   } else {
     update_term_meta ( $term_id, 'category-image-id', '' );
   }
 }

/*
 * Add script
 * @since 1.0.0
 */
 public function add_script() { ?>
   <script>
     jQuery(document).ready( function($) {
       function ct_media_upload(button_class) {
         var _custom_media = true,
         _orig_send_attachment = wp.media.editor.send.attachment;
         $('body').on('click', button_class, function(e) {
           var button_id = '#'+$(this).attr('id');
           var send_attachment_bkp = wp.media.editor.send.attachment;
           var button = $(button_id);
           _custom_media = true;
           wp.media.editor.send.attachment = function(props, attachment){
             if ( _custom_media ) {
               $('#category-image-id').val(attachment.id);
               $('#category-image-wrapper').html('<img class="custom_media_image" src="" style="margin:0;padding:0;max-height:100px;float:none;" />');
               $('#category-image-wrapper .custom_media_image').attr('src',attachment.url).css('display','block');
             } else {
               return _orig_send_attachment.apply( button_id, [props, attachment] );
             }
            }
         wp.media.editor.open(button);
         return false;
       });
     }
     ct_media_upload('.ct_tax_media_button.button'); 
     $('body').on('click','.ct_tax_media_remove',function(){
       $('#category-image-id').val('');
       $('#category-image-wrapper').html('<img class="custom_media_image" src="" style="margin:0;padding:0;max-height:100px;float:none;" />');
     });
     // Thanks: http://stackoverflow.com/questions/15281995/wordpress-create-category-ajax-response
     $(document).ajaxComplete(function(event, xhr, settings) {
       var queryStringArr = settings.data.split('&');
       if( $.inArray('action=add-tag', queryStringArr) !== -1 ){
         var xml = xhr.responseXML;
         $response = $(xml).find('term_id').text();
         if($response!=""){
           // Clear the thumb image
           $('#category-image-wrapper').html('');
         }
       }
     });
   });
 </script>
 <?php }

  }

$CT_TAX_META = new CT_TAX_META();
$CT_TAX_META -> init();

}

注:このフィールドを別の分類に追加する場合、たとえばカスタム投稿タイプの場合、categoryへの参照を独自の分類スラッグへの参照に置き換える必要があります。たとえば、ジャンル分類を作成して追加した場合、この関数を経由してフックします

add_action( 'taxonomy_add_form_fields', array ( $this, 'add_category_image' ), 10, 2 ).

私の分類学のスラッグの名前は保険です。

add_action( 'insurance_add_form_fields'、array($ this、 'add_category_image')、10、2);

functions.phpファイルでこのコードを使用します。


0

テーマのfunctions.phpファイルにコードを追加する必要があります-また、そのフィールドをカスタム分類フォームに追加する場合は、add_action関数のカスタム分類名でカテゴリを置き換えるだけです。例:add_action( 'category_edit_form_fields'、 'category_edit_form_fields'); add_action( 'custom_taxonomy_name_form_fields'、 'function_name_to_hook_on');


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.