• Hi

    I would like some of my pages to display posts from a categorie within the content.
    EG: My site has a music blog button for the music blog page, so when you click that i would like that page to show all the posts from the music blog categorie.

    How do i go about doing this?

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Easy tip: Download a free theme that is doing this already and check out the code.

    If you just want post titles try this:

    <?php
    global $post;
    $myposts = get_posts('numberposts=1&category=1');
    foreach($myposts as $post) :
    ?>
    <ul>
    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></ul>
    <?php endforeach; ?>

    If you want the full post you will need to call <?php the_excerpt(); ?>

    I hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘display posts from a category in a post’ is closed to new replies.