• hi, how to convert this code to wordpress comment system?

    
    <!--comments-->
    <section class="comment-site">
        <div class="container">
    
            <!--start comment-->
            <div class="Leave-a-comment">
                <h4>Leave a comment</h4>
                <form action="" class="comment-en">
                    <table class="comment-table">
                        <tr>
                            <td>Your name</td>
                            <td><span class="email-right">Email</span></td>
                        </tr>
                        <tr>
                            <td><input type="text" placeholder="Name"></td>
                            <td><input type="email" placeholder="Enter email" class="email-right"></td>
                        </tr>
                        <tr>
                            <td>Comment</td>
                            <td></td>
                        </tr>
                        <tr>
                            <td colspan="2"><textarea name="" id="" placeholder="Type your comment"></textarea></td>
                        </tr>
                        <tr>
                            <td><button type="submit">Submit Comment</button></td>
                        </tr>
                    </table>
                </form>
            </div>
    
            <!--start comments title-->
            <div class="comments-user">
                <h4>2 Comments</h4>
                <article class="user-comment-published">
                    <div class="user-image-circle">
                        <img src="img/team-avatar.jpg" alt="">
                    </div>
    
                    <section class="body-comment">
                        <strong class="user-name-comment">Ali Ak</strong>
                        <label class="user-label">Editor</label>
                        <span class="date-comment">24 minutes ago</span>
                        <div class="comment-content-user">
                            Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci aspernatur consequatur enim laboriosam perspiciatis, qui!
                        </div>
                        <button class="reply-com">Reply</button>
    
                        <!--comment reply-->
                        <div class="comment-reply-user">
                            <div class="user-image-circle">
                                <img src="img/team-avatar.jpg" alt="">
                            </div>
                            <strong class="user-name-comment">Ali Ak</strong>
                            <label class="user-label">Editor</label>
                            <span class="date-comment">24 minutes ago</span>
                            <div class="comment-content-user">
                                Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci aspernatur consequatur enim laboriosam perspiciatis, qui!
                            </div>
                            <button class="reply-com">Reply</button>
    
                        </div>
                    </section>
    
                </article>
            </div>
    
        </div>
    </section>
    

The topic ‘Comment Template’ is closed to new replies.