Last active
March 11, 2022 20:35
-
-
Save carlaizumibamford/d4cb3ff3b3d42ead35444b67bb33a4c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function modify_post_thumbnail_html($html, $post_id, $post_thumbnail_id, $size, $attr) { | |
| $id = get_post_thumbnail_id(); | |
| $src = wp_get_attachment_image_src($id, $size); | |
| $alt = get_the_title($id); | |
| $class = $attr['class']; | |
| if (strpos($class, 'retina') !== false) { | |
| $html = '<img src="' . $src[0] . '" alt="' . $alt . '" class="' . $class . '" />'; | |
| } else { | |
| $html = '<img src="' . $src[0] . '" alt="' . $alt . '" class="' . $class . '" />'; | |
| } | |
| return $html; | |
| } | |
| add_filter('post_thumbnail_html', 'modify_post_thumbnail_html', 99, 5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment