+48 695 115 215 biuro@webkom.pl

Uruchomienie funkcji

Należy dodać do pliku function.php

add_theme_support( 'post-thumbnails' );

Wyświetlenie ikony wpisu dla postów

<?php if ( has_post_thumbnail() ) {the_post_thumbnail();}
else { ?>
<img src="<?php bloginfo('template_directory'); ?>/images/ikona-wpisu.jpg" alt="<?php the_title(); ?>" />
<?php } ?>

Wyświetlenie ikony wpisu dla strony

	<?php if (have_posts()) : ?>

	<?php $post_id = 'page_id='.$post->ID; ?>

    <?php query_posts($post_id); ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php the_post_thumbnail(); ?>
    <?php endwhile; ?>

	<?php else : ?>
	<?php endif; ?>