Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. <div class="col-xs-12 text-center">
  2. <ul id="filters" class="filter-list list-unstyled text-center">
  3. <li class="active"><a class="selected" href="#">ะ’ัะต</a></li>
  4. <?php $arg=array(
  5. 'taxonomy'=>'catalog_cat',
  6. 'hide_empty'=>false,
  7. );
  8. $terms=get_terms($arg);
  9. foreach ($terms as $term) : ?>
  10. <li><a href="#" data-filter=".<?php echo $term->slug; ?>"><?php echo $term->name; ?></a></li>
  11. <?php endforeach;
  12. ?>
  13. </ul>
  14. </div>
  15. <div class="col-md-8" >
  16. <div id="holder">
  17. <?php
  18. if ( have_posts() ) : while ( have_posts() ) : the_post();
  19. $term_slug=get_the_terms($post->ID, 'catalog_cat');
  20. $term_string ='';
  21. foreach($term_slug as $term) :
  22. $term_string.=$term->slug;
  23. endforeach;
  24. ?>
  25. <div class=" col-md-6 col <?php echo $term_string; ?>" >
  26. <div class="latest_share_blog_box mb_40">
  27. <div class="latest_share_img_box">
  28. <?php the_post_thumbnail('spec_thumb'); ?>
  29. <span class="blog_date"><?php echo get_post_meta($post->ID, 'coint_text', true) ?></span>
  30. </div>
  31. <a href="<?php the_permalink(); ?>"><h1><?php the_title(); ?></h1></a>
  32. <p><?php the_excerpt(); ?></p>
  33. </div>
  34. </div>
  35. <?php endwhile; ?>
  36. </div>
  37. </div>
  38.  
  39.  
  40. <?php else: ?>
  41. <!-- no posts found -->
  42. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement