Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created November 28, 2012 07:59
Show Gist options
  • Save rianrietveld/4159753 to your computer and use it in GitHub Desktop.
Save rianrietveld/4159753 to your computer and use it in GitHub Desktop.
WordPress default thumbnail
<?php
// default thumbnail
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id ) {
if( '' == $html )
$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '"><img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/default-afbeelding.jpg" class="alignleft wp-post-image" alt="'.get_post_field( 'post_title', $post_id ).'"></a>';
else
$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>';
return $html;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment