Hide post titles, so only the thumbnail links to the permalink
-
Is there a way to hide post titles, so only the thumbnail links to the permalink (with title, full image, post etc.)? Is there a way to do this globally and/or per post?
I’d like to have just a grid of thumbnail images as links to posts, instead of the more common title and thumbnail. The titles in my case are hashtags.
PS
I was able to find a way, In functions.php to link all post thumbnails to the permalink using:// 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;
}`Any ideas would be appreciated!
Jayson
- The topic ‘Hide post titles, so only the thumbnail links to the permalink’ is closed to new replies.