Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter 3stripe

    (@3stripe)

    Ok I kind of got it sorted thanks to https://www.ads-software.com/support/topic/32792
    <?php $my_query = new WP_Query('category_name=MP3s&showposts=10'); ?>
    <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
    <h2 id="post-<?php the_ID(); ?>">
    <a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php the_title(); ?></a></h2>
    <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    <?php endwhile; ?>

    Still doesn’t look the same as a normal archives page though ??

    Thank you 3stripe, this solved my problem.

    Thread Starter 3stripe

    (@3stripe)

    No worries dude!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Displaying a category archive outside of its category page?’ is closed to new replies.