Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Last active August 29, 2015 14:20
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 reasonstousegenesis/b9e6801f926e175f8f68 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/b9e6801f926e175f8f68 to your computer and use it in GitHub Desktop.
Set a fallback featured image based on args
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Set a fallback featured image based on args
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/default-featured-image/
*/
add_filter( 'genesis_get_image_default_args', 'rtug_fallback_featured_image_args', 10, 2 );
function rtug_fallback_featured_image_args( $defaults, $args ) {
if ( isset( $args[ 'context' ] ) && 'archive' === $args[ 'context' ] )
$defaults[ 'fallback' ] = 200; // replace with your attachment ID
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment