Server IP : 66.29.132.124 / Your IP : 18.224.38.176 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/diixadigital.com/wp-content/themes/meto/ |
Upload File : |
<?php /** * Comments Main File. * * @package METO * @author Theme Kalia * @version 1.0 */ ?> <?php if (post_password_required()) { return; } ?> <?php $count = wp_count_comments(get_the_ID()); ?> <?php if (have_comments()) : ?> <div class="comments-area"> <div class="group-title"> <h3><?php esc_html_e('Comments', 'meto'); ?></h3> </div> <?php wp_list_comments(array( 'style' => 'div', 'short_ping' => true, 'avatar_size' => 100, 'callback' => 'meto_list_comments', )); ?> <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : ?> <nav class="navigation comment-navigation" role="navigation"> <h1 class="screen-reader-text section-heading"> <?php esc_html_e('Comment navigation', 'meto'); ?> </h1> <div class="nav-previous"> <?php previous_comments_link(esc_html__('← Older Comments', 'meto')); ?> </div> <div class="nav-next"> <?php next_comments_link(esc_html__('Newer Comments →', 'meto')); ?> </div> </nav><!-- .comment-navigation --> <?php endif; ?> <?php if (! comments_open() && get_comments_number()) : ?> <p class="no-comments"> <?php esc_html_e('Comments are closed.', 'meto'); ?> </p> <?php endif; ?> </div> <?php endif; ?> <?php meto_comment_form(); ?>