Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #######################
- Related Post......
- <!-- start related projects -->
- <div id="related-projects">
- <!-- start related project title -->
- <header class="content-header v3">
- <h4>Similar Post</h4>
- </header>
- <!-- end related project title -->
- <?php
- //for use in the loop, list 5 post titles related to first tag on current post
- $tags = wp_get_post_tags($post->ID);
- if ($tags) {
- $first_tag = $tags[0]->term_id;
- $args=array(
- 'tag__in' => array($first_tag),
- 'posts_per_page'=>3,
- 'ignore_sticky_posts' => 1,
- 'post__in' => get_option( $post->ID ),
- );
- };
- $reladet_post = new WP_Query($args);
- if( $reladet_post->have_posts() ) :
- ?>
- <!-- start projects -->
- <div class="projects row">
- <?php while ($reladet_post->have_posts()) : $reladet_post->the_post(); ?>
- <!-- project 1 -->
- <div class="col-24 web">
- <article class="project">
- <figure class="project-thumb">
- <?php the_post_thumbnail('reladet_img'); ?>
- </figure>
- <header class="project-header">
- <h4 class="project-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h4>
- <div class="project-meta"><?php the_category(' '); ?></div>
- </header>
- </article>
- </div>
- <?php endwhile;?>
- </div>
- <!-- end projects -->
- <?php endif;?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement