Return to Snippet

Revision: 52855
at November 3, 2011 02:29 by gamblelyn


Initial Code
// THIS LINKS THE THUMBNAIL TO THE POST PERMALINK

add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );

function my_post_image_html( $html, $post_id, $post_image_id ) {

	$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>';

	return $html;
}

Initial URL
http://wordpress.org/support/topic/making-post-thumbnail-link-to-post

Initial Description


Initial Title
Link featured post thumbnail in wordpress

Initial Tags
wordpress

Initial Language
PHP