How do I set the "orderby" parameter for the portfolio? I'd like all of my entries to come up alphabetical.
Thanks,
Bill
How do I set the "orderby" parameter for the portfolio? I'd like all of my entries to come up alphabetical.
Thanks,
Bill
Oops, I forgot to mention, this is in the Brightbox theme.
-Bill
Hey,
open up brightbox/includes/loop-portfolio.php and replace:
if(isset($avia_config['new_query'])) { query_posts($avia_config['new_query']); }
with:
if(isset($avia_config['new_query'])) {
$avia_config['new_query']['orderby'] = "title";
$avia_config['new_query']['order'] = "ASC";
query_posts($avia_config['new_query']);
}Perfect, thanks!
-Bill
This topic has been closed to new replies.