Hi, so basically what I am trying to do is have a PHP page have a login with wordpress authentication.
What I want:
if (user_level is guest)
<?php wp_register(); ?>
<?php wp_loginout(); ?>
else if (user_level is contributor)
<html>...</html>
else{ <html>...</html>}
I've already included wp-blog-header but I'm stuck because I can't find the proper codex for this.