Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Display default WordPress login/registration form into a modal window

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #149613
    luchid
    Participant

    Hello all, Hope someone can help me with this. I need to display the default WordPress login/registration into a modal window which is this: `

    <ul id="navigation">
                <?php wp_list_pages('title_li=');?>
                <li><a href="#openModal">login</a></li>
    
    <div id="openModal" class="modalDialog">
        <div>
            <a href="#close" title="Close" class="close">X</a>
            <p>default default WordPress login/registration form</p>
        </div>
    </div>
    
            </ul>
    

    What should I write instead of

    default WordPress login/registration form

    in order to display the default WordPress login form? I tried to use wp_loginout() but it shows a link first and after clicking it shows the form. Thank you very much!

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.