Skip to content

Instantly share code, notes, and snippets.

@apurbajnu
Last active April 20, 2016 14:11
Show Gist options
  • Save apurbajnu/57da89d49dbd7612b401d0b30ebf9eda to your computer and use it in GitHub Desktop.
Save apurbajnu/57da89d49dbd7612b401d0b30ebf9eda to your computer and use it in GitHub Desktop.
<?php
function add_cat_meta_box($options){
$tax_meta = array();
$tax_meta[] = array(
'id' => 'custom_taxonomy_options',
'taxonomy' => 'doc-category', // category, post_tag or your custom taxonomy name
// begin: fields
'fields' => array(
// begin: a field
array(
'id' => 'cat_image_id',
'type' => 'image',
'title' => 'Text Field',
),
// end: a field
),
);
return $tax_meta;
}
add_filter( 'cs_taxonomy_options', 'add_cat_meta_box' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment