bsweat
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Hacks
In reply to: Display custom post types / custom meta values based upon a custom taxonomyThis code works for the most part, however I still don’t understand how to get
<?php get_post_custom_values($key, $post_id); ?>to work. Any suggestions?<?php /* Template Name: Conference */ get_header(); ?> <div id="content" class="narrowcolumn"> <?php $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( 'conferences' => 'agriculture-conference', 'post_type' => 'title_sponsors', 'paged' => $paged, 'posts_per_page' => $post_per_page ); $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(); ?>"> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments ', '1 Comment ', '% Comments '); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('< Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries >') ?></div> </div> <?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 ?> </div> <?php get_footer(); ?>
Viewing 1 replies (of 1 total)