Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created September 19, 2013 04:18
Show Gist options
  • Save annalinneajohansson/6619095 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/6619095 to your computer and use it in GitHub Desktop.
GENERIC CLASS ON WORDPRESS POST IMAGES
<?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