Advertisement
alchymyth

Untitled

Feb 10th, 2012
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <li id="recent-posts" class="widget">
  2. <h4>Latest Business</h4>
  3. <ul>
  4. <?php $tag_title = single_tag_title('',false);
  5. query_posts('showposts=10&cat=-1'); ?>
  6. <?php while (have_posts()) : the_post(); ?>
  7. <li>
  8. <a href="<?php the_permalink() ?>"><?php the_title(); ?></a> - <?php echo $tag_title; ?> <?php
  9. foreach((get_the_category()) as $cat) {echo $cat->cat_name . ' ';} ?>      
  10. <?php if( get_post_meta($post->ID, "phone1", true) ): ?>           
  11. <br />Phone: <?php echo get_post_meta($post->ID, "phone1", $single = true); ?>
  12. <?php else: ?>
  13. <?php endif; ?>
  14. </li>
  15. <?php endwhile; wp_reset_query(); ?>
  16. </ul>
  17.         </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement