Title: cren1985's Replies | WordPress.org

---

# cren1985

  [  ](https://wordpress.org/support/users/cren1985/)

 *   [Profile](https://wordpress.org/support/users/cren1985/)
 *   [Topics Started](https://wordpress.org/support/users/cren1985/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cren1985/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cren1985/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cren1985/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cren1985/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cren1985/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove hyperlink from (Posted On)](https://wordpress.org/support/topic/remove-hyperlink-from-posted-on/)
 *  [cren1985](https://wordpress.org/support/users/cren1985/)
 * (@cren1985)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-hyperlink-from-posted-on/#post-4335438)
 * Enter this to your child theme or custom css to remove the data completely
 *     ```
       .entry-meta {
       display: none;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Adamos] Slider Link to Post](https://wordpress.org/support/topic/slider-link-to-post/)
 *  Thread Starter [cren1985](https://wordpress.org/support/users/cren1985/)
 * (@cren1985)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-link-to-post/#post-4292939)
 * Thank you for your help, I got what I needed by adding this to my functions.php
 *     ```
       // 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;
       }
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)