Display a list of all post from the Author in the author’s page (author.php) in alphebetical order
What Pieter Goosen said is exactly what you need to get this working. pre_get_posts is a very powerful function which is used to modify default behavior of main WordPress query. This hook is called after the query variable object is created, but before the actual query is run. With pre_get_posts we will check for author … Read more