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

get_header();

$artists = apply_filters( 'OVACOLL_artist', '' );

?>

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

		<div class="archive_artist">

			<div class="heading_archive_artist">
				<?php 
					$archive_artist_heading = OVACOLL_Settings::archive_artist_heading();
					$archive_artist_desc    = OVACOLL_Settings::archive_artist_desc();

				if ($archive_artist_heading != '') { ?>
					<h1 class="heading_artist">
						<?php echo $archive_artist_heading; ?>	
					</h1>
				<?php }
				if ($archive_artist_desc != '') { ?>
					<p class="desc_artist">
						<?php echo $archive_artist_desc; ?>	
					</p>
				<?php } ?>
			</div>
			
			<div class="content">
				<?php if($artists->have_posts() ) : while ( $artists->have_posts() ) : $artists->the_post();
					ovacoll_get_template( 'parts/item-artist.php' );
				endwhile; endif; wp_reset_postdata(); ?>
			</div>
			
			<?php 
				$args = array(
					'type'      => 'list',
					'next_text' => '<i class="ovaicon-next"></i><span class="visuallyhidden">Next</span>',
					'prev_text' => '<i class="ovaicon-back"></i><span class="visuallyhidden">Previous</span>',
				);

				the_posts_pagination($args);
			?>

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


<?php get_footer( );