Skip to content

Instantly share code, notes, and snippets.

@dz0ny
Created June 20, 2012 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dz0ny/2961700 to your computer and use it in GitHub Desktop.
Save dz0ny/2961700 to your computer and use it in GitHub Desktop.
<a href="<?php the_permalink() ?>" rel="bookmark" title="Povezava do <?php the_title_attribute(); ?>">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail("post-thumbnail", array("class"=>"grid_3"));
} else {
?>
<img src="<?php bloginfo('template_directory'); ?>/slike/slika.jpg" alt="slika" class="grid_3">
<?php
}
?>
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment