Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #275195

    Hi guys, I posted this questions awhile back and got this answer:
    Add this code to functions.php:
    add_filter(‘avia_blog_post_query’,’avia_modify_blog_post_query’);
    function avia_modify_blog_post_query( $query)
    {
    $query[‘orderby’] = ‘name’;
    $query[‘order’] = ‘ASC’;
    return $query;
    }

    It worked before but now it not working.
    Check out this page:
    http://icf-pittsburgh.org/category/executive/
    The names should be in alphabetical order. IDEALLY it would be nice to have them list in order of the LAST NAME
    Can you guide me on how to get them listed in alpha order and as a bonus, can it be done by last name in alpha?
    thanks for your help

    #275305

    Hello,

    Have you tried disabling all third-party plugins to see if it gets fixed?

    Also, have you tried this plugin to alter the order?
    https://wordpress.org/plugins/post-types-order/

    Regards,
    Josue

    #275331

    Josue, that plugin is incredible! I can customize the order of my posts easily with that.
    Thanks for the heads up! Outstanding recommendation.

    #275333

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Listing blog posts in alphabetical order’ is closed to new replies.