Skip to content

Instantly share code, notes, and snippets.

@jazzsequence
Created August 5, 2014 22:01
Show Gist options
  • Save jazzsequence/ad1b7ff04611671aeb1b to your computer and use it in GitHub Desktop.
Save jazzsequence/ad1b7ff04611671aeb1b to your computer and use it in GitHub Desktop.
Filter the automatic featured images from videos content to pull from a postmeta value
<?php
function filter_featured_images_from_videos( $content ) {
global $post;
$content .= get_post_meta( $post->ID, '_video_url', true );
return $content;
}
add_filter( 'wds_featured_images_from_video_filter_content', 'filter_featured_images_from_videos' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment