Advertisement
Guest User

Untitled

a guest
Jan 8th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. if ( is_user_logged_in() ):
  3.  
  4. query_posts(array(
  5. 'post_type' => 'klusjes',
  6. 'showposts' => 3
  7. ) );
  8. ?>
  9. <?php while (have_posts()) : the_post(); ?>
  10. <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
  11. <p><?php echo limit_words(get_the_excerpt(), '20'); ?></p>
  12. <?php endwhile;
  13.  
  14. else :
  15.  
  16. echo "Je hebt nog geen klusjes geplaatst";
  17.  
  18. endif;
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement