I am working with a client who has a directory site that allows users to create accounts, then lists of items from the directory. Right now, whenever a user creates an account, she gets a profile URL like:
domain.com/member/%author%
Which is accomplished with a simple:
$wp_rewrite->author_base = 'member';
Now, I need to allow those users the ability to create a list, which should result in this kind of a URL structure:
domain.com/member/%author%/%list%
So far, I'm creating these lists as custom post types. All of the articles and Stack Exchange posts I see on WP_Rewrite don't cover a URL rewrite like this. Is this possible? Do you have any pointers on how this could be done?
