PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
themes
/
hello-theme-child-master
<?php /** * Template Name: Our Product Template */ get_header(); ?> <div class="body__container__wrapp body__container__wrapp__inner "> <?php while (have_posts()) : the_post(); the_content(); endwhile; ?> <div class="spot__price__main"> <div class="carbon__bullion__price__graph"> <div class="product__wrapp"> <div class="product__list__main"> <div class="container"> <div class="owl-carousel owl-theme products__wrapp"> <?php $j = 1; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'post_type' => 'product', 'orderby' => 'date', 'order' => 'DESC', 'posts_per_page' => -1, 'taxonomy' => 'product_cat', 'paged' => $paged, ); $products = new WP_Query($args); if ($products->have_posts()): while ($products->have_posts()): $products->the_post(); ?> <div class="item team__card"> <div class="product__item"> <div class="thumb__wrapper"> <a href="<?php the_permalink();?>"> <div class="image__box"> <?php if (has_post_thumbnail($products->post->ID)) { echo get_the_post_thumbnail($products->post->ID, 'shop_catalog'); } else { echo '<img src="' . woocommerce_placeholder_img_src() . '" alt="Placeholder" />'; } ?> </div> </a> <a href="<?php the_permalink();?>" class="loop__product__link"> <h3 class="product__title"><?php the_title();?></h3> </a> <div class="product__descraption"> <?php the_excerpt();?> </div> </div> </div> </div> <?php endwhile; endif; wp_reset_query(); ?> </div> </div> </div> </div> <div class="two__col__full__wrapp"> <div class="inner__content__wrap"> <div class="inner__content__holder"> <div class="container"> <h2>Credit York Spot Price & Charts</h2> <?php echo do_shortcode('[mc4wp_form id=1597]'); ?> <!-- <p> <strong>For Carbon Bullion Market Exchange</strong> – <strong>Go to</strong> <a href="https://CBMIndex.com" rel="noopener" target="_blank">https://CBMIndex.com</a> </p> --> </div> </div> </div> </div> </div> </div> </div> <?php get_footer();?>
[+]
..
[+]
ultimate-member
[-] style.css
[edit]
[-] readme.txt
[edit]
[-] screenshot.png
[edit]
[-] functions.php
[edit]
[-] template-product.php
[edit]