Skip to content

Instantly share code, notes, and snippets.

@joshuadavidnelson
Created October 10, 2014 04:13
Show Gist options
  • Save joshuadavidnelson/b7c8675f11bf6749d383 to your computer and use it in GitHub Desktop.
Save joshuadavidnelson/b7c8675f11bf6749d383 to your computer and use it in GitHub Desktop.
add_filter( 'soliloquy_fc_query_args', 'rover_save_soliloquy_query', 1, 3 );
function rover_save_soliloquy_query( $query_args, $id, $data ) {
// Only show posts with featured images
$query_args['meta_query'] = array(
array(
'key' => '_thumbnail_id',
)
);
return $query_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment