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 | |
/* | |
Plugin Name: Custom Taxonomy DropDown | |
Author: Hameedullah Khan | |
Aurhot URI: http://hameedullah.com | |
*/ | |
// change this to your taxonomy | |
$brand_taxonomy = 'category'; |
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 while($mb->have_fields_and_multi('GROUP-NAME')): ?> | |
<?php $mb->the_group_open(); ?> | |
<p class="update-warning">Remember, you must save the page for the sort order to take effect.</p> | |
<?php $metabox->the_field('CONTENT-FIELD'); ?> | |
<label for="<?php $metabox->the_name(); ?>">FIELD LABEL</label> | |
<div class="customEditor"> | |
<textarea rows="10" cols="50" name="<?php $mb->the_name(); ?>" id="<?php $mb->the_name(); ?>"><?php $mb->the_value(); ?></textarea> | |
</div> |