Thread Starter
12sp
(@sp12)
I didn’t see the pastebin notification. I did read the loop pages and still felt lost.
Oh yes, sorry and before, before. I did put it before what I thought was the loop. I pasted all the code from the codex http://codex.wordpress.org/Alphabetizing_Posts
If I did the pastebin right it’s
http://pastebin.com/QThABqab
as it seems there is no query needed (I got that totally wrong, I missed the part that this is a page template), but rather a correction or additon to the parameters of ‘wp_list_categories()’ in the code;
possibly needs:
'hierarchical' => false,
http://codex.wordpress.org/Template_Tags/wp_list_categories
the ‘hierarchical’ generally seems to get set from within some theme options (?) however, I am not fimiliar enough with the theme to be sure.
Thread Starter
12sp
(@sp12)
Well, I found out I was using the wrong php. I needed the category.php
This is the right code: http://pastebin.com/72P95arp
I put in
global $query_string;
query_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1');
right before suffusion_query_posts();
but that didn’t work either.
Thread Starter
12sp
(@sp12)
To be clear, it did not work.
Thread Starter
12sp
(@sp12)
It turns out since I display a list for my categories I needed to edit layouts/layout-list.php. That did work. The theme creator helped me out.