It seems like stupid bug, but how can i order by title? It anyways orders by date! I’m using:
query_posts( array(
'post_type' => 'page',
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC'
) );
I want to use this in function as SHORTCODE. What i’m trying to achieve is to create site map / index of all entries in alphabetic order.
Also i’m using newest WP.
Thanks to Chip Bennett who told me that i’m doing wrong by using
query_posts
inside content. So i usedget_posts
and i got what i wanted, thanks!Here is sample of how can you do it, if you got the same problem as me:
Another post has this code inside a function, but for those looking to simply add alphabetized posts to a custom theme, for example, you can use the following…