Advertisement
campusboy

for https://t.me/baytalov

Dec 25th, 2022
1,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. // Миниатюра
  2. $thumb_url = get_the_post_thumbnail_url( get_the_ID(), "medium_large" );
  3.  
  4. // Галлерея (ссылки через запятую)
  5. $images = get_field( "location_gallery", get_the_ID() );
  6. $images = is_array( $images ) ? $images : [];
  7. $images = array_map(
  8.     function ( $image ) {
  9.         return esc_url( $image["sizes"]["medium_large"] );
  10.     },
  11.     array_slice( $images, 0, 5 ) // Берем только 5 первых картинок
  12. );
  13. $images = implode( ',', $images );
  14.  
  15. printf( '<img class="location__image" src="%s" data-hover-slides="%s" alt="">', $thumb_url, $images );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement