linking pic previews to posts

Replace this line <?php the_post_thumbnail(); ?> with <?php echo ‘<a href=”‘ . get_permalink() . ‘”>’; the_post_thumbnail(); echo ‘</a>’; ?> You want to use get_permalink() to turn that image into a link.

How to find all links between pages

Post Search Approach Pull out all of your posts and pages from the database Iterate through all pages / posts and do a string search on the content – substr_count( ‘http://www.yourdomain.com’, $page->content ); Sum up the counts from all the posts / pages This will of course miss allot of links made by plugins, navigation … Read more