Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. $images = rwmb_meta( 'gallery', 'size=YOURSIZE' );$images = rwmb_meta( 'gallery', 'type=image&size=YOURSIZE' );if ( !empty( $images ) ) {foreach ( $images as $image ) {//IMAZE 1 "thumbnail" echo '<a href="', esc_url($image['full_url'] ), '" title="', esc_attr( $image['title'] ), '" rel="lightbox"><img style="padding:5px" src="', esc_url( $image['url'] ), '" alt="', esc_attr( $image['alt'] ), '"></a>';//IMAZE 2 "large"echo '<a href="', esc_url( $image['full_url'] ), '" title="', esc_attr( $image['title'] ), '" rel="lightbox"><img style="padding:5px" src="', esc_url( $image['url'] ), '" alt="', esc_attr( $image['alt'] ), '"></a>';//IMAZE 3 "full"
  2. echo '<a href="', esc_url( $image['full_url'] ), '" title="', esc_attr( $image['title'] ), '" rel="lightbox"><img style="padding:5px" src="', esc_url( $image['url'] ), '" alt="', esc_attr( $image['alt'] ), '"></a>';
  3. }//IMAZE 3 "medium"
  4. echo '<a href="', esc_url( $image['full_url'] ), '" title="', esc_attr( $image['title'] ), '" rel="lightbox"><img style="padding:5px" src="', esc_url( $image['url'] ), '" alt="', esc_attr( $image['alt'] ), '"></a>';
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement