/ Published in: PHP
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
<?php $temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query?>query('showposts=5&category_name=thecategoryname'.'&paged='.$paged);
?>
<?php while ($wp_query?>have_posts()) : $wp_query->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php previous_posts_link('« Previous') ?></div>
<div class="alignright"><?php next_posts_link('More »') ?></div>
</div>
<?php $wp_query = null; $wp_query = $temp;?>
Comments
 Subscribe to comments
                    Subscribe to comments
                
                