Thank you for this theme, I think it’s great!
I’m creating a site where all the information is in the excerpt below the picture on the front page, so there is no need for the user to click on the picture or title to go to the actual post. How can I make it so there are no links at all in the pictures or titles?
Also, how can I move the title for each entry on the front page so it is above the picture?
Thank you for your help.
To remove the link on post thumbnails rewrite the pinboard_post_thumbnail()
function as follows:
function pinboard_post_thumbnail() {
if( has_post_thumbnail() ) : ?>
<figure class="entry-thumbnail">
<?php the_post_thumbnail( ( pinboard_is_teaser() ? 'teaser-thumb' : 'blog-thumb' ) ); ?>
</figure>
<?php endif;
}
Due to the design nature of this theme moving the title above the thumbnail would break the layout, yet you can do it with Enlightenment theme, you might want to give it a try.