I am working on having protected pages for certain users.
I have 6 current clients that have their own page, I want to have a login that would ideally route them to their page automatically without them having to remember the link, not sure if that is doable with your plugin. If not, the next best would be to have them login on a login page that displays the children pages and theirs will show up once logged in, preferrably it would only shows theirs. Right now, if the page is locked it shows the main site url without a hyperlink in place of their link, once logged in it shows all protected page links.
Hope that I make sense. I am using a shortcode to call in the child pages as follows
function child_pages_shortcode() {
global $post;
return '<ul>'.wp_list_pages('child_of=373&sort_column=post_title&title_li=').'</ul>';
}
add_shortcode('children', 'child_pages_shortcode');
I would like to only see the page they have permission for.
thank you - awesome plugin!!