• Resolved mark-w

    (@mark-w)


    Hi,

    What happens if you pick a theme that doesn’t have a built in section for admin login? How do you get back to admin? I see a theme I like but I’m afraid I’ll get locked out of my site if I use it!

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to add in the meta section. Look at the default theme sidebar, at the very bottom you’ll see something like this:

    <li><h2>Meta</h2>
    <ul>
    <?php wp_register(); ?>
    <li><?php wp_loginout(); ?></li>
    <li><a href="https://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
    <li><a href="https://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
    <li><a href="https://www.ads-software.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
    <?php wp_meta(); ?>
    </ul>
    </li>

    This needs to go into the bottom of your theme’s sidebar.php, before the closing ul and div tags generally (though that can vary with theme).

    Thread Starter mark-w

    (@mark-w)

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘theme with no admin login link?’ is closed to new replies.