Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
rogermoss
/
nouveau
/
wp-content
/
themes
/
Graydley
📤 Upload
📝 New File
📁 New Folder
Close
Editing: comments.php
<div class="comments"> <?php if (post_password_required()) : ?> <p><?php _e( 'Post is password protected. Enter the password to view any comments.', 'html5blank' ); ?></p> </div> <?php return; endif; ?> <?php if (have_comments()) : ?> <h2><?php comments_number(); ?></h2> <ul> <?php wp_list_comments('type=comment&callback=html5blankcomments'); // Custom callback in functions.php ?> </ul> <?php elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p><?php _e( 'Comments are closed here.', 'html5blank' ); ?></p> <?php endif; ?> <?php comment_form(); ?> </div>
Save
Cancel