• ethicus

    (@ethicus)


    Hi there!

    I have the following div that i need to make:

    <div id="divManAndWork">
      <div class="clContent">
       <?php query_posts('cat=5&showposts=1'); ?>
      <?php while (have_posts()) : the_post(); ?>
        <h2><a href="/Man-and-Work">Man And Work</a></h2>
        <div class="clKaderMetPlaatje">
          <p><img src="<?php echo get_post_meta($post->ID, "afbeeldingmensenwerk", true);?>" /><?php the_excerpt();?></p>
          <p><a href="<?php the_permalink();?>" class="clVerder">Lees verder</a></p>
        </div>
    	<?php endwhile;?>

    Part 2:

    <h3>More Man And Work</h3>
        <ul>
          <li><a href="#">Maecenas eget lectus vel est convallis convallis molestie at ipsum.</a></li>
          <li><a href="#">Fusce egestas lacus a libero luctus eu laoreet orci interdum.</a></li>
        </ul>
      </div>
      <p class="clVerder"><a href="#">Read more items</a></p>
    </div>

    The problem i have is in part 2 does anyone knows how I can get part 2 working? part 2 shows me the other posts made in catid 5 and puts them in list items. Anyone knows how to work around this one?

  • The topic ‘Show the links to other category posts’ is closed to new replies.