• Resolved rt49andellis

    (@rt49andellis)


    Here are the 2 codes that I’ve tried….

    query_posts( "cat=10&orderby=title&order=ASC" );
    
    and
    
    $args = array(
    'orderby' => 'title',
    'order' => 'ASC',
    'cat' => '10'
    );
    query_posts($args);

    Using DESC as the order, both of these codes work fine. They show all 4 posts and put them in alphabetical order, backwards. But, if I change over to ASC, it drops 2 of my posts.

    Any ideas??

Viewing 1 replies (of 1 total)
  • Thread Starter rt49andellis

    (@rt49andellis)

    Please feel free to delete this. Also, no idea how it wound up in this category vs the Hacks category. Probably the same way my title ended up at “Sory” instead of “Sort”. Good grief!!!

Viewing 1 replies (of 1 total)
  • The topic ‘Sory by title (ASC) dropping posts’ is closed to new replies.