PATH:
home
/
lab2454c
/
gemition.com
/
wp-content
/
themes
/
igpma
<?php /** * Template Name: Other Commodities Template */ get_header(); ?> <div class="breadcrumbs__wrapp"> <div class="container-xl"> <ul> <li><a href="<?php echo home_url(); ?>">Home</a></li> <li class="current"><?php the_title(); ?></a></li> </ul> </div> </div> <div class="body__container__wrapp body__container__wrapp__inner body__container__wrapp__inner__data"> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_metals_section') ): while( have_rows('other_metals_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <div class="col-xl-12 col-lg-12 col-md-12"> <?php if( have_rows('other_metals_section') ): while( have_rows('other_metals_section') ) : the_row(); ?> <div class="image__box__data"> <img src="<?php the_sub_field('image'); ?>" alt="" /> </div> <?php endwhile; endif; ?> </div> </div> </div> </div> </div> </div> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_energies_section') ): while( have_rows('other_energies_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <div class="col-xl-12 col-lg-12 col-md-12"> <?php if( have_rows('other_energies_section') ): while( have_rows('other_energies_section') ) : the_row(); ?> <div class="image__box__data"> <img src="<?php the_sub_field('image'); ?>" alt="" /> </div> <?php endwhile; endif; ?> </div> </div> </div> </div> </div> </div> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_grains_section') ): while( have_rows('other_grains_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <div class="col-xl-12 col-lg-12 col-md-12"> <?php if( have_rows('other_grains_section') ): while( have_rows('other_grains_section') ) : the_row(); ?> <div class="image__box__data"> <img src="<?php the_sub_field('image'); ?>" alt="" /> </div> <?php endwhile; endif; ?> </div> </div> </div> </div> </div> </div> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_meats_section') ): while( have_rows('other_meats_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <div class="col-xl-12 col-lg-12 col-md-12"> <?php if( have_rows('other_meats_section') ): while( have_rows('other_meats_section') ) : the_row(); ?> <div class="image__box__data"> <img src="<?php the_sub_field('image'); ?>" alt="" /> </div> <?php endwhile; endif; ?> </div> </div> </div> </div> </div> </div> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_softs_section') ): while( have_rows('other_softs_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <div class="col-xl-12 col-lg-12 col-md-12"> <?php if( have_rows('other_softs_section') ): while( have_rows('other_softs_section') ) : the_row(); ?> <div class="image__box__data"> <img src="<?php the_sub_field('image'); ?>" alt="" /> </div> <?php endwhile; endif; ?> </div> </div> </div> </div> </div> </div> <!-- Blog Section --> <div class="two__col__full__wrapp col__full__wrapp__with__color col__full__wrapp__with__no__color"> <div class="inner__content__wrap"> <div class="inner__content__holder inner__content__holder__noposition"> <div class="container-xl"> <?php if( have_rows('other_latest_news_section') ): while( have_rows('other_latest_news_section') ) : the_row(); ?> <h3><?php the_sub_field('title'); ?></h3> <?php endwhile; endif; ?> <div class="row align-items-center"> <?php $args = array ( 'post_type' => 'post', 'status' => 'publish', 'order' => 'DESC', 'posts_per_page' => 3 ); $the_query = new WP_Query($args); ?> <?php if($the_query->have_posts()) : ?> <?php while($the_query->have_posts()) : $the_query->the_post(); ?> <div class="col-xl-4 col-lg-4 col-md-4"> <div class="box-row-list"> <div class="box-list"> <?php if(has_post_thumbnail(get_the_ID())){?> <div class="news-icon"> <a href="<?php echo the_permalink();?>"><?php the_post_thumbnail();?></a> </div> <?php } ?> <div class="news-content-text"> <div class="news-title "> <a href="<?php echo the_permalink();?>"><h3> <?php the_title(); ?></h3></a> </div> <div class="hr-line"></div> <div class="news-summery py-3"> <?php $category = get_the_category(); if ( ! empty( $category ) ) { ?> <h4><?php echo $category[0]->cat_name; ?></h4> <?php } ?> <a href="<?php echo the_permalink();?>"><?php echo the_excerpt();?></a> </div> <!-- <div class="blog-read-more"> <a href="<?php //echo the_permalink();?>"> Read More </a> </div> --> </div> </div> </div> </div> <?php endwhile; ?> <?php endif; wp_reset_query(); ?> </div> </div> </div> </div> </div> <!-- Blog Section End --> </div> <?php get_footer(); ?>
[-] template-knowledge.php
[edit]
[+]
woocommerce
[-] template-option.php
[edit]
[-] template-othercomm.php
[edit]
[-] footer-widget.php
[edit]
[-] search.php
[edit]
[-] template-spot-price copy 1.php
[edit]
[-] index.php
[edit]
[-] page.php
[edit]
[-] searchform.php
[edit]
[+]
..
[-] template-faq.php
[edit]
[-] sidebar.php
[edit]
[-] template-sector.php
[edit]
[-] rtl.css
[edit]
[-] template-indexes.php
[edit]
[-] blank-page-with-container.php
[edit]
[-] template-globalgem.php
[edit]
[-] template-investment.php
[edit]
[-] single.php
[edit]
[-] footer.php
[edit]
[-] template-about.php
[edit]
[-] template-home.php
[edit]
[-] template-spot-price.php
[edit]
[-] .DS_Store
[edit]
[-] template-insight.php
[edit]
[-] template-partner.php
[edit]
[-] blank-page.php
[edit]
[-] left-sidebar.php
[edit]
[-] header.php
[edit]
[-] style.css
[edit]
[-] 404.php
[edit]
[-] readme.txt
[edit]
[-] template-spot-price copy 1.php.zip
[edit]
[-] single-attachment.php
[edit]
[-] woocommerce11.php
[edit]
[-] screenshot.png
[edit]
[-] template-stocks.php
[edit]
[-] custom-editor-style.css
[edit]
[-] functions.php
[edit]
[-] archive.php
[edit]
[-] fullwidth.php
[edit]
[+]
template-parts
[-] comments.php
[edit]
[-] template-sponsor.php
[edit]
[-] template-contact.php
[edit]
[+]
inc
[-] template-blog.php
[edit]