You have a post called “Show featured IMAGE before the content area” which works great. However I would also like featured VIDEOS to do the same.
Can you please provide the code for this function.
With Gratitude,
Blaze
PS – I managed to get it to work sometimes using a plugin called ‘featured video plus’… however it seemed to only work spontaneously and created other problems with post grid display.
FROM ORIGINAL POST:
add_action(‘kleo_before_main’, ‘sq7rdu_show_featured_before_content’);
function sq7rdu_show_featured_before_content() {
if (is_single()) {
if (has_post_thumbnail()) {
echo ‘<div class=”fullwidth-image-before-content”>’;
echo the_post_thumbnail(‘full’);
echo ‘</div>’;
}
}
}