Create a gist now

Instantly share code, notes, and snippets.

What would you like to do?
<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