How do i delete 'site admin' from my footer? it only appears when the user is logged in, otherwise it says register....
cheers
How do i delete 'site admin' from my footer? it only appears when the user is logged in, otherwise it says register....
cheers
the function is wp_register, delete it from footer.php
(that also gets rid of the register option, they are part of the same function)
looks something like
<?php wp_register('', ''); ?>
Try editing your theme's footer.php file and removing <?php wp_register(); ?> or replacing it with <?php wp_loginout(); ?>.
does it get rid of the whole function register though? because i have it somewhere else on my site...or does it just get rid of the name from the footer?
cheers
removes it from your footer
ah it worked, thanks so much for your kind help :)
This topic has been closed to new replies.