Message only visible to admins when logged in
Description
This code will show a message to the admin of the site when they are logged in. If they are not logged in then nothing will appear
This code will show a message to the admin of the site when they are logged in. If they are not logged in then nothing will appear
PHP Source Code
<?php global $current_user; get_currentuserinfo(); if ($current_user->user_level == 10 ) { ?>
<!--Stuff Seen By Admin if logged in-->
<?php } else { ?>
<!--Stuff Seen By Visitors-->
<!--If you do not want the visitor to see anything then leave this area blank-->
<?php } ?>