• Resolved shayani

    (@shayani)


    Hi all.

    I want to create a new PAGE no my blog. In this new page, I want to list all the posts from a specific CATEGORY (movies, for example). And I want to sort it by alphabetical order, not date.

    The new page would be like this:

    MOVIE NAME 1 ………….. DATE OF THE POST
    MOVIE NAME 2 ………….. DATE OF THE POST
    MOVIE NAME 3 ………….. DATE OF THE POST
    etc…

    How can I do this? Is it possible?

    I’m using iNove as main theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Put this in your page template:

    <?php
    //show 3 posts from category 4
    $posts=get_posts('cat=1&post_type=post&showposts=3');
    if ($posts) {
    foreach($posts as $post) {
    setup_postdata($post);
    ?>
    <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>............<?php the_time('m.d.y') ?> </p>
    <?php }
    }
    ?>

    Thread Starter shayani

    (@shayani)

    Thank you! Worked fine!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘New page with list of topics of one category’ is closed to new replies.