Forums

Display items by Sorted by Title and not date (4 posts)

  1. rowby
    Member
    Posted 6 years ago #

    I would like my blog to display each post sorted alphabetically by title and not by date.

    I will probably not be displaying the date at all.

    Is there a way to do this?

  2. rowby
    Member
    Posted 6 years ago #

    I found this solution which works great:
    http://codex.wordpress.org/Alphabetizing_Posts

    The only modification I would like beyond the above solution is to sort it by REVERSE alphabetical order.

    Any ideas?

    Thanks

    Rowby

  3. moshu
    Member
    Posted 6 years ago #

    In the code you've found there is this line:
    &orderby=title&order=asc&posts_per_page...
    Change the order (asc ==> desc)

  4. Kafkaesqui
    Moderator
    Posted 6 years ago #

    Another option is to add these two lines to your blog's root index.php, or alternatively the wp-blog-header.php file (somewhere near the top):

    $orderby='title';
    $order='ASC';

    This will affect everything.

Topic Closed

This topic has been closed to new replies.

About this Topic