Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created March 20, 2024 16:30
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 nfsarmento/0837075ab6d291cb1cb08d1e81cd78d7 to your computer and use it in GitHub Desktop.
Save nfsarmento/0837075ab6d291cb1cb08d1e81cd78d7 to your computer and use it in GitHub Desktop.
Default/fallback post thumbnail image.
<?php
/**
*
* Default/fallback post thumbnail image.
*
*/
function aoa_filter_thumbnail_id( $thumbnail_id, $post = null ) {
if ( ! $thumbnail_id ) {
$thumbnail_id = 16157; //id of default featured image
}
return $thumbnail_id;
}
add_filter( 'post_thumbnail_id', 'aoa_filter_thumbnail_id', 20, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment