Created
July 28, 2013 08:28
-
-
Save ovizii/6097940 to your computer and use it in GitHub Desktop.
Add class to image's parent
This file contains 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 give_linked_images_class($html, $id, $caption, $title, $align, $url, $size, $alt = '' ){ | |
$classes = 'shutter'; // separated by spaces, e.g. 'img image-link' | |
// check if there are already classes assigned to the anchor | |
if ( preg_match('/<a.*? class=".*?">/', $html) ) { | |
$html = preg_replace('/(<a.*? class=".*?)(".*?>)/', '$1 ' . $classes . '$2', $html); | |
} else { | |
$html = preg_replace('/(<a.*?)>/', '$1 class="' . $classes . '" >', $html); | |
} | |
return $html; | |
} | |
add_filter('image_send_to_editor','give_linked_images_class',10,8); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment