Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
airmobeuag
/
2020
/
wp-content
/
themes
/
airmob
/
✏️
Editing: comments.php
<?php /** * The template for displaying comments * */ if ( post_password_required() ) { return; } ?> <div id="comments" class="comments-area"> <?php if ( have_comments() ) : ?> <h2 class="comments-title">Commentaires</h2> <?php the_comments_navigation(); ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'callback' => 'better_comments' ) ); ?> </ol><!-- .comment-list --> <?php the_comments_navigation(); // If comments are closed and there are comments, let's leave a little note, shall we? if ( ! comments_open() ) : ?> <p class="no-comments">Les commentaires sont fermés sur cet article.</p> <?php endif; endif; comment_form(); ?> </div>
💾 Save
❌ Cancel