How can I remove the iFrame (ect) <?php tern_wp_youtube_video(); ?> from within the post content and add it in the template manually which I have done using <?php tern_wp_youtube_video(); ?>?
Change line 30 of /core/video.php from:
add_filter('the_content','WP_ayvpp_content');
to:
//add_filter('the_content','WP_ayvpp_content');
This term (<?php tern_wp_youtube_video(); ?>)is causing an empty YouTube iFrame in none Automatic Youtube Video Posts when I add it in manually using the <?php tern_wp_youtube_video(); ?> term!
How can I get the video holder (ect)<?php tern_wp_youtube_video(); ?>
Automatic Youtube Video Posts iFrame to only display on Automatic Youtube Video Posts as its leaving an empty YouTube iFrame in other post?
Check to see if the video exists first.
<?php if(get_post_meta($post->ID,'_tern_wp_youtube_video',true) { ?>
<?php tern_wp_youtube_video(); ?>
<?php } ?>