I have been using this plugin so users can in a controlled manner upload their own posts, now it has a category dropdown and I wanted a set list for a tag dropdown where another user kindly helped me out.
The problem I have now is that the tags show as the ID number instead of the name itself.
Example of the post: http://wordpress.art-williams.com/countries/testing-dropdown-tags-21 (it shows 120, experiences at the bottom when it should say "Hotel for example)
I am a novice at wordpress but I can copy + paste :/
The add destination page is here if you need to see it: http://wordpress.art-williams.com/add-destination
Any help is hugely appreciated! I just dont know how to fix that. Here is the code for the tags by the way.
<!-- START TAGS -->
<?php
if($this->ucan_options['uCan_Allow_Tags'])
{
?>
<label>
<?php echo __('Your Experience', 'ucan-post'); ?>:
<span class="small"><?php echo __('(What was your travels purpose?)', 'ucan-post'); ?></span>
</label>
<?php
wp_dropdown_categories(array('taxonomy'=> 'post_tag','exclude'=>6,129,'hide_empty' => 0, 'name' => 'ucan_submission_tags'));
?>
<?php
}
?>
<!-- END TAGS -->
