HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/wp-content/plugins/ova-sev/templates/elementor/ova_sev_list.php
<?php if ( !defined( 'ABSPATH' ) ) exit();

$template 	= $args['template'];
$services 	= ova_sev_query($args);

?>
<div class="ova-sev-list <?php echo esc_attr( $template ); ?>">
	<?php if ( $services->have_posts() ) : ?>
		<?php $counter = 0; ?>
	<ul class="wrapper">
		<?php while ( $services->have_posts() ) : $services->the_post(); ?>
			<?php
				$counter += 1;
				$class_item = $counter % 2 == 0 ? 'right_item' : 'left_item';
			?>
			<li class="item <?php echo esc_attr( $class_item ); ?>">
				<a href="<?php the_permalink(); ?>" class="title"
					title="<?php echo esc_attr( get_the_title() ); ?>">
					<?php echo esc_html( get_the_title() ); ?>
					<i class="gimonticon-right-arrow" aria-hidden="true"></i>
				</a>
				
			</li>
		<?php endwhile;?>
	</ul>
	<?php endif;wp_reset_postdata(); ?>
</div>