Home › Support Forums › Theme Support › Pinboard › Slider question › Reply To: Slider question
Daniel Tara
Keymaster
Open the slider.php file and replace this code:
<?php if( has_post_thumbnail() ) : ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_post_thumbnail( 'slider-thumb' ); ?> </a> <?php endif; ?> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
with this:
<?php if( has_post_thumbnail() ) : ?> <?php the_post_thumbnail( 'slider-thumb' ); ?> <?php endif; ?> <h2 class="entry-title"><?php the_title(); ?></h2>