Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created December 20, 2015 21:54
Show Gist options
  • Save pablocattaneo/e465329b9bed8c17975d to your computer and use it in GitHub Desktop.
Save pablocattaneo/e465329b9bed8c17975d to your computer and use it in GitHub Desktop.
Si el usuario no sube un thumbanil al post se muestra una imagen por defecto.
<?php
// Must be inside a loop.
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
else {
echo '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/thumbnail-default.jpg" />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment