Skip to content

Instantly share code, notes, and snippets.

@braddalton
Forked from GaryJones/functions.php
Last active December 26, 2015 01:28
Show Gist options
  • Save braddalton/7071104 to your computer and use it in GitHub Desktop.
Save braddalton/7071104 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_get_image_default_args', 'prefix_stop_auto_featured_image' );
function prefix_stop_auto_featured_image( $args ) {
if ( ! isset( $args['context'] ) || 'archive' !== $args['context'] )
return $args;
$args['fallback'] = false;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment