Advertisement
TangibleDesign

Untitled

Oct 4th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. if ( $wrapper ) {
  2. $wrapper_class = 'mh-thumbnail__inner';
  3. if ( ! isset( $image_meta['sizes'][$image] ) ) {
  4. if ( $image_meta['width'] > $image_meta['height'] ) {
  5. $wrapper_class .= ' mh-thumbnail__inner--horizontal';
  6. } elseif ( $image_meta['height'] > $image_meta['width'] ) {
  7. $wrapper_class .= ' mh-thumbnail__inner--vertical';
  8. } else {
  9. $wrapper_class .= ' mh-thumbnail__inner--square';
  10. }
  11. $lazy_load = false;
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement