This file contains 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 global $video_metabox; $video_metabox->the_meta(); ?> | |
<?php if ( $video_metabox->have_value( 'vids' ) ) { ?> | |
<ul class="project_videos"> | |
<?php while( $video_metabox->have_fields('vids') ) { ?> | |
// This Works |
This file contains 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 global $video_metabox; $video_metabox->the_meta(); ?> | |
<?php if ( $video_metabox->have_value( 'vids' ) ) { ?> | |
<ul class="project_videos"> | |
<?php while( $video_metabox->have_fields('vids') ) { ?> | |
<?php do_shortcode( '[embed]' . $video_metabox->the_value( 'videourl' ) . '[/embed]' ); ?> | |
<?php } ?> | |
</ul> |