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-career/templates/archive-career.php
<?php if ( !defined( 'ABSPATH' ) ) exit();

get_header();

$number_column = get_theme_mod( 'ova_career_layout', 'two_column' );

?>

<div class="row_site">
	<div class="container_site">

		<div class="ova_archive_career archive_career">

			<div class="career-content <?php echo esc_attr( $number_column ) ?>">

				<?php if( have_posts() ) : while ( have_posts() ) : the_post();
					
					ovacareer_get_template( 'parts/item-career.php', $args );

				endwhile; endif; wp_reset_postdata(); ?>

			</div>

	        <?php 
	    		 $args = array(
	                'type'      => 'list',
	                'next_text' => '<i class="ovaicon-next" aria-hidden="true"></i><span class="visuallyhidden">Next</span>',
	                'prev_text' => '<i class="ovaicon-back" aria-hidden="true"></i><span class="visuallyhidden">Previous</span>',
	            );

	            the_posts_pagination($args);
	    	 ?>

	    </div>
			
	</div>
</div>

<?php get_footer();