2013-03-28 68 views
1

我在WordPress側邊欄小部件中有以下內容,它可以充當我的利基在線社區。現在,我可以在用戶未登錄時顯示錶單並顯示「歡迎來到社區!」用戶註銷時的消息 - 這很好。但是,登錄功能似乎不起作用。我能請你幫忙嗎?WordPress登錄表單代碼

<form name="loginform" id="loginform" action="https://domain.org/wp-login.php"   
method="post"> 
    <p class="login-username"> 
     <label for="user_login">Username</label> 
     <input type="text" name="log" id="user_login" class="input" value="" 
         size="20" /> 
     </p> 
    <p class="login-password"> 
     <label for="user_pass">Password</label> 
     <input type="password" name="pwd" id="user_pass" class="input" 
         value="" size="20" /> 
    </p> 
    <p class="login-submit"> 
     <input type="submit" name="wp-submit" id="wp-submit" class="button- 
         primary" value="Log In" /> 
     <input type="hidden" name="redirect_to" 
         value="https://domain.org/" /> 
     </p> 

    </form> 
<?php } else { ?> 
       <h4>Welcome to the Community!<h4> 
    <?php } ?> 

回答

0

試試這個...

if (!is_user_logged_in()) { 
    wp_login_form(); 
} else { 
    echo '<h4>Welcome to the Community!</h4>'; 
} 

您也可以通過配置陣列wp_login_form()http://codex.wordpress.org/Function_Reference/wp_login_form

+0

感謝@Rob - 我不知道有顯示功能登錄表單!相反,我編碼我自己的簡單形式:-)所有的最佳。 – user2209868 2013-03-28 01:40:02

+0

編輯:@Rob,你能幫助我 - 表單沒有登錄。https://tinyurl.com/crcrohx - (右側) – user2209868 2013-03-28 02:12:07

+0

它張貼到錯誤的網址'https:// haiticonnects- patricknommensen.netdna-ssl.com /可溼性粉劑login.php'。檢查您的設置。 – Rob 2013-03-28 02:16:00