Title: galacticat's Replies | WordPress.org

---

# galacticat

  [  ](https://wordpress.org/support/users/galacticat/)

 *   [Profile](https://wordpress.org/support/users/galacticat/)
 *   [Topics Started](https://wordpress.org/support/users/galacticat/topics/)
 *   [Replies Created](https://wordpress.org/support/users/galacticat/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/galacticat/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/galacticat/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/galacticat/engagements/)
 *   [Favorites](https://wordpress.org/support/users/galacticat/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Issues with categories and paging](https://wordpress.org/support/topic/issues-with-categories-and-paging/)
 *  Thread Starter [galacticat](https://wordpress.org/support/users/galacticat/)
 * (@galacticat)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/issues-with-categories-and-paging/#post-851699)
 * Ended up getting it fixed using the directions found on this page,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Issues with categories and paging](https://wordpress.org/support/topic/issues-with-categories-and-paging/)
 *  Thread Starter [galacticat](https://wordpress.org/support/users/galacticat/)
 * (@galacticat)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/issues-with-categories-and-paging/#post-851696)
 * Giving this a bump, and willing to offer payment to anyone who can lend a hand
   with getting this fixed..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Issues with categories and paging](https://wordpress.org/support/topic/issues-with-categories-and-paging/)
 *  Thread Starter [galacticat](https://wordpress.org/support/users/galacticat/)
 * (@galacticat)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/issues-with-categories-and-paging/#post-851455)
 * In 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)