Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/v/e/r/verseaumee/geniouskin/wp-content/themes/ixlab/tmpl/project/ |
Upload File : |
<?php /** * The template for displaying project style3 */ defined( 'ABSPATH' ) or die(); $options = array( 'itemSelector' => '.project' ); $meta_information = (array)ixlab_option( 'projects__meta' ); ?> <?php if ( have_posts() ): ?> <?php get_template_part( 'tmpl/project/filter' ) ?> <div class="content-inner" data-grid="<?php echo esc_attr( json_encode( $options ) ) ?>" data-columns="<?php echo esc_attr( ixlab_option( 'projects__gridColumns' ) ) ?>"> <?php while ( have_posts() ): the_post(); ?> <article <?php post_class( 'project' ) ?> itemscope="itemscope" itemtype="http://schema.org/CreativeWork"> <div class="project-inner"> <figure class="project-thumbnail"> <div class="client-info"> <?php if ( ixlab_option( 'projects__excerpt' ) == 'on' ): ?> <div class="project-summary"> <?php the_excerpt() ?> </div> <?php endif ?> <span class="client-thumb"><?php if ( $client_image_id = get_field( 'projectClientLogo', get_post() ) ): ?> <?php $image = ixlab_get_image_resized( array( 'image_id' => $client_image_id, 'size' => 'full' ) ); echo wp_kses_post( $image['thumbnail'] ); ?> <?php endif ?></span> </div> <a href="<?php the_permalink() ?>"> <?php if ( $accent_color = get_field( 'projectAccentColor' ) ): ?> <span class="project-client-color" style="background-color: <?php echo esc_attr( $accent_color ) ?>;"> <?php echo esc_html( $accent_color ) ?> </span> <?php endif ?> <span class="mask"></span> <?php $image = ixlab_get_image_resized( array( 'post_id' => get_the_ID(), 'size' => ixlab_option( 'projects__imagesize' ), 'crop' => ixlab_option( 'projects__imagesizeCrop' ) == true ) ); echo ixlab_cleanup( $image['thumbnail'] ); ?> </a> </figure> <div class="project-info"> <h2 class="project-title" itemprop="name headline"> <a href="<?php the_permalink() ?>"><?php the_title() ?></a> </h2> <div class="project-categories"> <?php echo get_the_term_list( get_the_ID(), 'nproject-category' ) ?> </div> </div> </div> </article> <?php endwhile ?> </div> <?php ixlab_pagination() ?> <?php else: ?> <!-- Show empty message --> <?php endif ?>