• Resolved slowbutsteady

    (@slowbutsteady)


    I’m trying to get the event tags list to appear along with the category list. This is what I came up with:

    <?php echo get_the_term_list( $post->ID, ‘event-category’, ‘Category: ‘, ‘, ‘, ” ); ?>

    <?php if ( function_exists(‘the_event-tag’) ) {
    the_event-tag(‘<span class=”tags”>’.__(‘Tags:‘).’ ‘, ‘, ‘, ‘</span>’); } ?>
    <?php edit_post_link(‘Edit‘, ‘ | ‘, ”); ?>

    The category works fine, but I can’t seem to get the Tags to appear. Any suggestions would be appreciated!

    http://wordpress.org/extend/plugins/event-organiser/

Viewing 2 replies - 1 through 2 (of 2 total)
  • There is no function the_event-tag() unless you have defined it…?

    To get the list of event tags you can do the following:

    <?php echo get_the_term_list( $post->ID, 'event-tag', 'Tags: ', ', ', '' ); ?>

    Thread Starter slowbutsteady

    (@slowbutsteady)

    Thanks Stephen! I had tried that script before and it didn’t work..I bet I had ‘event-tags’ plugged in. Guess I need to pay better attention!

    Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Event Organiser] Event Tags’ is closed to new replies.