PATH:
home
/
letacommog
/
les-compagnons
/
wp-content
/
themes
/
oceanwp-child-theme-master
/
templates
<?php /** * Template Name: Landing Page * * @package OceanWP WordPress theme */ get_header(); ?> <?php do_action( 'ocean_before_content_wrap' ); ?> <div id="content-wrap" class="container clr"> <?php do_action( 'ocean_before_primary' ); ?> <div id="primary" class="content-area clr"> <?php do_action( 'ocean_before_content' ); ?> <div class = "container02"> <?php $args = array( 'post_type' => 'sport', 'post_status' => 'publish', 'tax_query' => array( array( 'taxonomy' => 'result', 'field' => 'slug', 'terms' => 'win' ) ) ); $testimonials = new WP_Query( $args ); if( $testimonials->have_posts() ) : ?> <?php while( $testimonials->have_posts() ) : $testimonials->the_post(); ?> <div class = "box"> <p class = "cat"> WIN </p> <p class = "title"> <?php printf( '%1$s %2$s', get_the_title(), get_the_content() ); ?> </p> <p class = "prediction"> <?php the_field('predictions'); ?> </p> <p class = "odds"> <?php the_field('odds'); ?> </p> </div> <?php endwhile; wp_reset_postdata(); ?> <?php else : esc_html_e( 'No testimonials in the diving taxonomy!', 'text-domain' ); endif; ?> </div> <?php do_action( 'ocean_after_content' ); ?> </div><!-- #primary --> <?php do_action( 'ocean_after_primary' ); ?> </div><!-- #content-wrap --> <?php do_action( 'ocean_after_content_wrap' ); ?> <?php get_footer(); ?>
[+]
..
[-] landing.php
[edit]