Quantcast
Channel: help – WordPress.org Forums
Viewing all articles
Browse latest Browse all 13924

miguelsmit on "How to personalize the loop on different categories"

$
0
0

Hello everybody.

I want to know if is there a way to show posts in a specific order but only for one category?
something like:

'<?php

if('SELECTED-CATEGORY'){

query_posts($query_string);
if (have_posts()) : while (have_posts()) : the_post();

}else{

$posts=query_posts($query_string . ‘orderby=rand’);
if (have_posts()) : while (have_posts()) : the_post();

}

?>'

where the SELECTED-CATEGORY could be the "Home Page" or a "category"

-I apologize for my bad english-


Viewing all articles
Browse latest Browse all 13924

Trending Articles