[content_band style=”color: #333;” bg_color=”#ffddea” border=”all” inner_container=”true”] [custom_headline style=”margin-top: 0;” level=”h3″ looks_like=”h3″]Control Panel[/custom_headline]
[/content_band]
[insert_php]
if ( is_user_logged_in() ) {
$current_user = wp_get_current_user();
$fordb=$current_user->user_login;
echo ‘You are logged in as :’.$fordb.PHP_EOL;
} else {
echo ‘User not logged in.’;
$fordb=’none’;
}
echo “You can add 5 at a time”.PHP_EOL;
echo “Duplicates already in the database will be ignored”.PHP_EOL;
[/insert_php]