I'm using page of categories (http://wordpress.org/tags/page_of_categories) to display all of the posts that belong to a specific category inside a given custom page I ave created.
This is working great but I want to also, in addtion of the title and post metada that shows up in the list of posts to display some of the custom fields I have defined for each category.
DOes anyone have nay iedea how I can do this?
Here's the code I have:
<?php
$category = get_post_meta($posts[0]->ID, 'category', true);
if ($category) {
$cat = get_cat_ID($category);
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$post_per_page = -1; // -1 shows all posts
$do_not_show_stickies = 1; // 0 to show stickies
$args=array(
'category__in' => array($cat),
'orderby' => 'date',
'order' => 'DESC',
'paged' => $paged,
'posts_per_page' => $post_per_page,
'caller_get_posts' => $do_not_show_stickies
);
$temp = $wp_query; // assign orginal query to temp variable for later use
$wp_query = null;
$wp_query = new WP_Query($args);
if( have_posts() ) :
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></p>
<p>
<?php if ( get_post_meta(the_ID(), 'course_title', true) ) { ?><strong>COURSE TITLE: </strong><?php echo get_post_meta(the_ID(), "course_title", $single = true); ?>
</p>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif;
$wp_query = $temp; //reset back to original query
} // if ($category)
?>