• Resolved LEVI44

    (@levi44)


    How do i delete ‘site admin’ from my footer? it only appears when the user is logged in, otherwise it says register….

    cheers

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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('', ''); ?>

    esmi

    (@esmi)

    Try editing your theme’s footer.php file and removing <?php wp_register(); ?> or replacing it with <?php wp_loginout(); ?>.

    Thread Starter LEVI44

    (@levi44)

    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

    Thread Starter LEVI44

    (@levi44)

    ah it worked, thanks so much for your kind help ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do i delete ‘site admin’ from my footer?’ is closed to new replies.