Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <div class="col-md-6 col-sm-6 left">
  2. <h3><?php
  3. $idObj = get_category_by_slug('c_work');
  4. $id = $idObj->term_id;
  5. echo get_cat_name($id); ?></h3>
  6. <div class="resume_icon"><i class="icon-basic-case"></i></div>
  7.  
  8. <?php if ( have_posts() ) : query_posts('cat=' . $id);
  9. while (have_posts()) : the_post(); ?>
  10. <div class="resume_item">
  11. <div class="year"><?php echo get_post_meta($post->ID, 'resume_years', true); ?></div>
  12. <div class="resume_description"><?php echo get_post_meta($post->ID, 'resume_place', true); ?><strong><?php the_title(); ?></strong></div>
  13. <?php the_content(); ?>
  14. </div>
  15. <? endwhile; endif; wp_reset_query(); ?>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement