The short answer is no. But you can target individual by pointing to their permalink. On my site the url is; http://www.mywebsite/team-members/firstname-lastname
The ‘team-members’ part can be changed in Options.
The firstname-lastname is the ‘slug’ setting in each team member.
Another option would be to create a group with 1 member?
Hi Eshwarspy. I’m trying to get the same to work with my custom post type ‘event’. So to clarify, should your;
add_action( ‘pre_get_posts’, ‘alx_pre_get_posts’, ‘custom post name’ );
instead be:
add_action( ‘pre_get_posts’, ‘alx_pre_get_posts’, ‘my-custom-post-type’ );
or in my case:
add_action( ‘pre_get_posts’, ‘alx_pre_get_posts’, ‘event’ );
Thanks JochenT, that fixed it for me.