Created
September 19, 2013 04:18
-
-
Save annalinneajohansson/6619095 to your computer and use it in GitHub Desktop.
GENERIC CLASS ON WORDPRESS POST IMAGES
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
<?php | |
add_filter( 'get_image_tag_class', 'add_generic_image_class'); | |
function add_generic_image_class( $class ) { | |
$class .= ' my-image-class'; | |
return $class; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment