Last active
April 20, 2016 14:11
-
-
Save apurbajnu/57da89d49dbd7612b401d0b30ebf9eda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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