galacticat
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: Issues with categories and pagingForum: Plugins
In reply to: Issues with categories and pagingGiving this a bump, and willing to offer payment to anyone who can lend a hand with getting this fixed..
Forum: Plugins
In reply to: Issues with categories and pagingIn case it helps here is what I am using as my blog page template..
<?php /* Template Name: Blog */ ?> <?php get_header();?> <div id="items"> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=14&posts_per_page=12&paged=$paged"); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="item"> <div class="background"></div> <a href="<?php $key="videolink"; echo get_post_meta($post->ID, $key, true); ?>" rel="mediabox[<?php $key="videowidth"; echo get_post_meta($post->ID, $key, true); ?> <?php $key="videoheight"; echo get_post_meta($post->ID, $key, true); ?>]" Title="Click here to instantly play this video"><?php the_excerpt(); ?></a> <div class="content"> <h2><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></h2> <p><?php the_content_rss(); ?></p> </div> <div class="comments-link"> <p><a href="<?php the_permalink() ?>#comments" title="Comment on This Movie"><?php comments_number('0', '1', '%'); ?></a></p> </div> </div> <?php endwhile; else: ?> <?php endif; ?> <div id="navi"><?php next_posts_link('<span class="navforward"></span>') ?><?php previous_posts_link('<span class="navback"></span>') ?></div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)