Add Embed functionallity on a WordPress Taxonomy
-
Hi!
I use a plugin with a taxonomy called “venues”. I put a Youtube-VImeo Link on the wp_editor, but later, the venue only shows the youtube URL.
The plugin has this code on the admin side:
<div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="venue_description postarea"> <?php wp_editor( eo_get_venue_meta( $term_id, '_description' ), 'content', array( 'textarea_name' => 'eo_venue[description]', 'dfw' => false ) ); ?> </div>
And this on the venue frontend:
<?php $venue_id = get_queried_object_id(); ?> <?php if ( $venue_description = eo_get_venue_description( $venue_id ) ) { echo '<div class="venue-archive-meta">' . $venue_description . '</div>'; } ?>
How I can get a Youtube video embedded? I’m going crazy xD
Thanks a lot.
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add Embed functionallity on a WordPress Taxonomy’ is closed to new replies.