| Server IP : 217.160.0.15 / Your IP : 216.73.217.142 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/app395378437/wp-content/themes/photoline-lite/ |
Upload File : |
<?php
/**
* The template for displaying Comments.
* @package Photoline Lite
*/
if ( post_password_required() )
return;
?>
<div id="comments" class="comments-area">
<?php // You can start editing here -- including this comment! ?>
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
$comment_count = get_comments_number();
if ( 1 === $comment_count ) {
printf(
/* translators: 1: title. */
esc_html_e( 'One thought on “%1$s”', 'photoline-lite' ),
'<span>' . get_the_title() . '</span>'
);
} else {
printf( // WPCS: XSS OK.
/* translators: 1: comment count number, 2: title. */
esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $comment_count, 'comments title', 'photoline-lite' ) ),
number_format_i18n( $comment_count ),
'<span>' . get_the_title() . '</span>'
);
}
?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-above" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'photoline-lite' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'photoline-lite' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'photoline-lite' ) ); ?></div>
</nav><!-- #comment-nav-above -->
<?php endif; // check for comment navigation ?>
<ol class="comment-list">
<?php
wp_list_comments( array( 'callback' => 'photoline_comment' ) );
?>
</ol><!-- .comment-list -->
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'photoline-lite' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'photoline-lite' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'photoline-lite' ) ); ?></div>
</nav><!-- #comment-nav-below -->
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?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="no-comments"><?php _e( 'No comments', 'photoline-lite' ); ?></p>
<?php endif; ?>
<?php
$args = array(
'title_reply' => __( 'Leave a Reply', 'photoline-lite' ),
'label_submit' => __( 'Post Comment', 'photoline-lite' )
);
comment_form( $args );
?>
</div><!-- #comments -->