File Editor
Directories:
.. (Back)
images
inc
js
languages
Files:
404.php
archive.php
comments.php
featured-box.php
footer.php
front-page-blog.php
front-page.php
fullwidth.php
functions.php
header.php
index.php
license.txt
page.php
readme.txt
rtl.css
search.php
searchform.php
sidebar-footer.php
sidebar.php
single.php
style.css
Create New File
Create
Edit File: comments.php
<?php /* Design Theme's Comments Area for Single Pages Copyright: 2012-2016, D5 Creation, www.d5creation.com Based on the Simplest D5 Framework for WordPress Since Design 1.0 */ if ( post_password_required() ) { return; } ?> <div id="commentsbox"> <?php if ( have_comments() ) : ?> <h2 class="comments"><?php comments_number(__('No Comments','d5-design'), __('One Comment','d5-design'), __('% Comments','d5-design') );?>to <a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2> <ol class="commentlist"> <?php wp_list_comments(); ?> </ol> <div class="comment-nav"> <div class="floatleft"> <?php previous_comments_link() ?> </div> <div class="floatright"> <?php next_comments_link() ?> </div> </div> <?php else : ?> <?php if ( ! comments_open() && ! is_page() ) : ?> <p class="watermark"><?php echo __('Comments are Closed', 'd5-design'); ?></p> <?php endif; ?> <?php endif; ?> <?php if ( comments_open() ) : ?> <div id="comment-form"> <?php comment_form(); ?> </div> <?php endif; ?> </div>
Save Changes
Rename File
Rename