Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hjkelly/5721711 to your computer and use it in GitHub Desktop.
Save hjkelly/5721711 to your computer and use it in GitHub Desktop.
<?php
/* LISTING PAGE EXAMPLE */
if (has_post_thumbnail()) {
echo get_the_post_thumbnail(get_post()->ID, 'thumbnail');
}
else {
echo '<img src="/assets/img/deltawire-thumbnail-default.jpg" alt="" />';
}
?>
<?php
/* FULL POST PAGE EXAMPLE */
if (has_post_thumbnail()) {
echo get_the_post_thumbnail(get_post()->ID, 'medium');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment