• Resolved jerryjm

    (@jerryjm)


    Here is the blog: https://coolcats.com/Nashville-Web-Designers-Blog/
    I found a wp-login.php with a patch, renamed the existing one and upload the new one, but still see no link.

    Also on these forums, I found some PHP stuck at the top of sidebar.php, which nows says to me, “Welcome, admin”. but, it is not a link, so I cannot admin the site or logout.

Viewing 3 replies - 1 through 3 (of 3 total)
  • It is at https://coolcats.com/Nashville-Web-Designers-Blog/wp-login.php

    Look at the wp-content/themes/default/sidebar.php for an example of usage by the WordPress Default 1.6 theme. It uses the wp_loginout template tag.

    Thread Starter jerryjm

    (@jerryjm)

    Never mind, I am a friggin’ genius. ?? Here’s what I added to the sidebar if anyone needs it.

    <!– begin new login –>
    <?php

    global $user_identity;
    get_currentuserinfo();

    if ($user_identity == ”) {
    echo(‘Welcome Guest, why not register or login to post comments’);
    } else {
    echo(‘Welcome <b>’ . $user_identity . ‘</b>’);
    }

    ?>

    <!– end new login –>

    Thread Starter jerryjm

    (@jerryjm)

    Hy, thank you, Michael, I didn’t see your reply before I posted. Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘New install, lost my login link!’ is closed to new replies.