Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /**
  2. * Add and extra class to the entry-content div
  3. *
  4. */
  5. function jw_entry_content_class( $attributes ) {
  6.  
  7. if ( is_tax( $taxonomy ) )
  8.  
  9. $attributes['class'] .= $class_to_add;
  10. return $attributes;
  11. }
  12. add_filter( 'genesis_attr_entry', 'jw_entry_content_class' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement