Skip to content

Instantly share code, notes, and snippets.

@srikat
Created March 12, 2014 11:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save srikat/9505257 to your computer and use it in GitHub Desktop.
Save srikat/9505257 to your computer and use it in GitHub Desktop.
Aligning Featured Image to right in Genesis Content Archives
/**
* Change Image Alignment of Featured Image From Left to Right
*
*/
function sk_change_image_alignment( $attributes ) {
$attributes['class'] = str_replace( 'alignleft', 'alignright', $attributes['class'] );
return $attributes;
}
add_filter( 'genesis_attr_entry-image', 'sk_change_image_alignment' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment