Re: Registered Users can use contact forms only
This is what you want.
http://codex.wordpress.org/Function_...user_logged_in
But not sure which contact form you are talking about, but for anyone who is interested in only showing stuff if a user is logged in.
Code:
<?php if ( is_user_logged_in() ) { ... } ?>
Example
Display different output depending on whether the user is logged in or not.
Code:
<?php
if ( is_user_logged_in() ) {
echo 'Welcome, registered user!';
} else {
echo 'Welcome, visitor!';
};
?>