Is it possible to show theme switcher for admin only? Admin must login in order to see drop down theme switcher.
Thanks
Is it possible to show theme switcher for admin only? Admin must login in order to see drop down theme switcher.
Thanks
There may be a better way to do it, but see if this works:
<?php global $userdata;
get_currentuserinfo();
if ($userdata->user_level == 10) { ?>
Theme switcher template tag goes here
<?php } ?>This topic has been closed to new replies.