Advertisement
Guest User

Untitled

a guest
Oct 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {
  2. $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . $html . '</a>';
  3. return $html;
  4. }
  5. add_filter( 'post_thumbnail_html', 'wpb_autolink_featured_images', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement