Skip to content

Instantly share code, notes, and snippets.

@jhned
Last active June 14, 2016 17:47
Show Gist options
  • Save jhned/02c9a509e7e6af5f4ae9ec7643a92f95 to your computer and use it in GitHub Desktop.
Save jhned/02c9a509e7e6af5f4ae9ec7643a92f95 to your computer and use it in GitHub Desktop.
Many conditionals make a muckle
<?php
if (is_archive() || is_search()) :
$url = get_permalink();
if (has_post_thumbnail()) :
print '<a href="'.$url.'">';
the_post_thumbnail('thumbnail');
print '</a>';
endif;
if ( $post->post_type == 'post' ) print '<div itemprop="blogPost">';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment