Advertisement
Guest User

Untitled

a guest
Aug 1st, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?php $toptracks = get_post_meta($post->ID, 'category', true);
  2. $the_query = new WP_Query('cat=' . $toptracks); ?>
  3.  
  4. <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
  5. <div id="offersouter"><?php if ( has_post_thumbnail()) : ?>
  6. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
  7. <?php the_post_thumbnail('', array('class' => 'offersimg')); ?>
  8. </a>
  9. <?php else: ?>
  10. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
  11. <img src="/wp-content/themes/twentytwelve/assets/logo.png" class="offersimg" />
  12. </a>
  13. <?php endif; ?>
  14. <div id="offersinner">
  15. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  16. <p><?php the_excerpt(__('(more…)')); ?></p></div>
  17. </div>
  18. <?php endwhile;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement