Skip to content

Instantly share code, notes, and snippets.

@j-gardner
Created April 11, 2014 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-gardner/10437717 to your computer and use it in GitHub Desktop.
Save j-gardner/10437717 to your computer and use it in GitHub Desktop.
Add a requirement that only items which have a featured image should be returned
<?php
// In your theme's functions.php file
add_filter( 'arconix_flexslider_loop_args', 'thumbnail_meta' );
function thumbnail_meta( $args ) {
$args['meta_key'] = "_thumbnail_id";
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment