| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/uxhactp/www/wp-content/themes/bridge/templates/blog-parts/compound/ |
Upload File : |
<div class="post_image">
<?php
$post_content = get_the_content();
preg_match('/\[gallery.*ids=.(.*).\]/', $post_content, $ids);
$array_id = explode(",", $ids[1]);
switch ($gallery_post_layout) {
case 'slider':
?>
<div class="flexslider">
<ul class="slides">
<?php
foreach ($array_id as $img_id) { ?>
<li><a itemprop="url"
href="<?php the_permalink(); ?>">
<span class="qodef-image-shader">
<?php echo wp_get_attachment_image($img_id, 'full'); ?>
</span>
</a>
</li>
<?php } ?>
</ul>
</div>
<?php break;
case 'masonry':
echo qode_get_blog_gallery_layout($array_id,true);
break;
} ?>
</div>