PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
easyweb
<?php get_header(); ?> <!-- Start Page Content --> <section id="main-content" class="container"> <div class="row-wrapper-x"> <?php if( have_posts() ): while( have_posts() ): the_post(); the_content(); endwhile; endif; ?> </div> </section> <!-- Start Related Work --> <?php // get current portfolio terms $post_id = get_the_ID(); $terms = get_the_terms( $post_id , 'portfolio_category' ); // get current portfolio category names $category_filter = array(); if( is_array( $terms ) ) : foreach( $terms as $term ) $category_filter[] = $term->slug; endif; // new Query $args = array( 'post_type' => 'portfolio', 'taxonomy' => 'portfolio_category', 'post__not_in' => array( $post_id ), 'orderby' => 'rand', 'posts_per_page' => 10, 'tax_query' => array( array( 'taxonomy' => 'portfolio_category', 'field' => 'slug', 'terms' => $category_filter, ), ), ); $rw_query = new WP_Query( $args ); ?> <section class="related-works"> <!-- subtitle --> <div class="container"> <div class="col-md-12"> <div class="portfolio-carousel-subtitle"> <h4 class="subtitle"><?php esc_html_e( 'Related Works', 'easyweb' ); ?></h4> <!-- owl-carousel custom navigation --> <div class="latest-projects-navigation"> <a class="btn prev"><i class="fa-angle-left"></i></a> <a class="btn next"><i class="fa-angle-right"></i></a> </div> </div> <!-- latest-projects (owl-carousel) --> <ul id="latest-projects" class="owl-carousel owl-theme"> <?php if ( $rw_query->have_posts()) : while ( $rw_query->have_posts() ) : $rw_query->the_post(); ?> <li class="portfolio-item"> <a><?php the_post_thumbnail( 'easyweb_webnus_thumb300x200' ) ?></a> <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> <div class="portfolio-meta"><?php echo '<span class="portfolio-date">' . get_the_date('d F Y') . '</span>'; ?></div> </li> <?php endwhile; endif; wp_reset_postdata(); ?> </ul> <!-- end latest-projects --> </div> <!-- end col-md-12 --> </div> </section> <!-- end related-works --> <?php get_footer(); ?>
[+]
..
[-] header.php
[edit]
[-] single.php
[edit]
[-] style.css
[edit]
[-] screenshot.png
[edit]
[-] comments.php
[edit]
[+]
languages
[+]
parts
[+]
inc
[-] search.php
[edit]
[-] index.php
[edit]
[-] searchform.php
[edit]
[+]
vc_templates
[+]
fonts
[-] wpml-config.xml
[edit]
[-] single-portfolio.php
[edit]
[-] rtl.css
[edit]
[+]
css
[-] page.php
[edit]
[-] author.php
[edit]
[-] functions.php
[edit]
[-] archive.php
[edit]
[-] 404.php
[edit]
[-] Change_log.txt
[edit]
[+]
images
[+]
js
[-] taxonomy-portfolio_category.php
[edit]
[-] attachment.php
[edit]
[-] COPYING.txt
[edit]
[-] footer.php
[edit]
[-] readme.txt
[edit]