Dawn Clark
Member
Posted 3 years ago #
Hey there all.
I am new to wordpress and creating many different levels for my website. I was wondering how I could customize the template for the log-in page for each membership level? I am aware of being able to redirect members once they log in to a specialized page, but how do I go about making that page have a different looking template to all the others?
Thanks very much.
customize the template for the log-in page for each membership level?
If they haven't logged in, how do you know what membership level they 'possess'?
Dawn Clark
Member
Posted 3 years ago #
Because I have already built the infrastructure for the membership levels, low, middle, high, etc. Now I just need to put up the content specific to their levels. How can I make their branch of the website have a different skin?
Well at least I can tell you about getting the list of users from the blog and using Function_Reference/get_userdata
<?php
$blogusers = get_users_of_blog();
foreach ($blogusers as $bloguser) {
$user = get_userdata($bloguser->user_id);
echo "<pre>"; print_r($user); echo "</pre>";
}
?>