Mary_Pieroszkiewicz

Untitled

Aug 13th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.59 KB | None | 0 0
  1. <?php
  2.     if ( post_password_required() ) {
  3.         return;
  4.     }
  5.  
  6. ?>
  7.  
  8. <!-- comments -->
  9. <div class="comments__container" aria-label="Blog Comments">
  10.     <header class="header__comments">
  11.         <h4 class="comments__content comments--readers">Komentarze<br class="rwd__break--comments"> czytelników</h4>
  12.         <span class="comments__content circle__comments"><i class="fas fa-circle"></i></span>
  13.         <h4 class="comments__content comments--add"><a class="add--comment" href="#">Dodaj odpowiedź</a></h4>
  14.     </header>
  15.     <div class="comment__form">
  16.         <div id="respond" class="respond--form">
  17.             <from id="commentform" class="from__content" method="post" action="#">
  18.                 <div class="comment__form--field comment__form--author">
  19.                     <input type="text" id="author" name="author" placeholder="Imię i Nazwisko">
  20.                 </div>
  21.                 <div class="comment__form--field comment__form--mail">
  22.                     <input type="text" id="email" name="email" placeholder="Adres e-mail">
  23.                 </div>
  24.                 <div class="comment__form--field comment__form--message">
  25.                     <textarea id="comment" name="comment" placeholder="Treść komentarza"></textarea>
  26.                 </div>
  27.                 <button name="submit" class="comment__form--submit" value="Submit Comment" type="submit">Wyślij</button>
  28.             </from>
  29.         </div>
  30.     </div>
  31.  
  32.     <div class="comments__list">
  33.  
  34.         <?php if (have_comments() ) : ?>
  35.  
  36.             <?php
  37.                 wp_list_comments(array(
  38.                     'callback' => 'pureconciousnesslightandlove_comments_theme',
  39.                     'style' => 'div'
  40.                 ));
  41.             ?>
  42.  
  43.         <?php else : ?>
  44.  
  45.         <p class="no-comments">brak komentarzy.</p>
  46.  
  47.         <?php endif; ?>
  48.     </div>
  49.  
  50. </div>
  51.  
  52. <!-- end of comments -->
Advertisement
Add Comment
Please, Sign In to add comment