Hi,
On my site I have a poll, I'd like to add an "Edit poll" link to the homepage which ONLY logged in, registered admins can see.
Is this possible with some code?
Hi,
On my site I have a poll, I'd like to add an "Edit poll" link to the homepage which ONLY logged in, registered admins can see.
Is this possible with some code?
No one? :-(
I know this isn't exactly what you're looking for but it might be a starting point for you - it will let any logged in user see the link
<?php if (is_user_logged_in()) { ?><a href="LINK-GOES-HERE">LINK-TEXT</a></li><?php } ?>
You could also check out this page for a possible solution.
That does the job :) Thank you!
if you want to test admin logged in, then you can do this:
<?
global $userdata;
get_currentuserinfo()
if($userdata->user_level>9){ // do your thing }
?>
[Signature moderated. Please read the forum rules!]
This topic has been closed to new replies.