Restricting displayed posts to posts from only select authors
Yes, you can use the pre_get_posts hook. From the docs: Fires after the query variable object is created, but before the actual query is run. In other words, this hook allows you to alter the WP query before it runs, so you can throw in whatever conditionals to suit your needs. Here is the structure … Read more