View Single Post
Old 06-25-2013, 03:42 AM  
nexcom28
So Fucking Banned
 
Join Date: Jan 2005
Posts: 3,716
I found this in entry.php
Code:
query_posts($args);
	}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Which I presume is the right place, I tried to add
Code:
query_posts(array(
        'showposts' => 6,
	'orderby' => 'rand',
	'category_name' => 'news' //You can insert any category name
));
	}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
But it didn't make any differece.
nexcom28 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote