Created
December 20, 2015 21:54
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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