���� JFIF fdasasfas213sdaf
Server IP : 147.79.69.77 / Your IP : 216.73.216.210 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u479334040/domains/arbaazar.com/public_html/wp-content/themes/grogin/ |
Upload File : |
<?php /** * Comments.php * The template for displaying Comments. * @package WordPress * @subpackage grogin * @subpackage grogin 1.0 */ ?> <?php /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if ( post_password_required() ) return; ?> <!-- Comments --> <?php if ( comments_open() || have_comments() ) : ?> <div class="post-comments"> <?php endif; ?> <?php if ( have_comments() ){ ?> <h5 class="entry-title"> <?php printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'grogin' ), number_format_i18n( get_comments_number() ), ''. get_the_title() .'' ); ?> </h5> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav role="navigation" id="comment-nav-above" class="site-navigation comment-navigation"> <h3 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'grogin' ); ?></h3> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'grogin' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'grogin' ) ); ?></div> </nav><!-- #comment-nav-before .site-navigation .comment-navigation --> <?php endif; // check for comment navigation ?> <ol class="comment-list"> <?php /* Loop through and list the comments. Tell wp_list_comments() * to use grogin_comment() to format the comments. * If you want to overload this in a child theme then you can * define grogin_comment() and that will be used instead. * See grogin_comment() in inc/template-tags.php for more. */ wp_list_comments( array( 'callback' => 'grogin_comment' ) ); ?> </ol> <!-- .commentlist --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation"> <h3 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'grogin' ); ?></h3> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'grogin' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'grogin' ) ); ?></div> </nav> <?php endif; // check for comment navigation ?> <?php } else { // have_comments() ?> <div class="no-comment-list"></div> <?php } ?> <?php // If comments are closed and there are comments, let's leave a little note, shall we? if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p class="nocomments text-center"><?php esc_html_e( 'Comments are closed.', 'grogin' ); ?></p> <?php endif; ?> <?php if ( comments_open() ) : ?> <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> <p class="alert"><?php esc_html_e('You must be','grogin'); ?> <a href="<?php echo wp_login_url( get_permalink() ); ?>"><?php esc_html_e('logged in','grogin'); ?></a> <?php esc_html_e('to post a comment.','grogin'); ?></p> <?php else : ?> <div class="post-comments-form"> <?php comment_form(); ?> </div> <?php endif; // If registration required and not logged in ?> <?php endif; // if you delete this the sky will fall on your head ?> <?php if ( comments_open() || have_comments() ) : ?> </div> <?php endif; ?> <!-- Comments -->