X7ROOT File Manager
Current Path:
/home/remnbtxp/verdantagroalliedservices.com/wp-content/themes/blocksy
home
/
remnbtxp
/
verdantagroalliedservices.com
/
wp-content
/
themes
/
blocksy
/
📁
..
📄
404.php
(662 B)
📄
LICENSE
(17.62 KB)
📁
admin
📄
archive.php
(344 B)
📄
changelog.txt
(185.59 KB)
📄
comments.php
(2.87 KB)
📄
footer.php
(527 B)
📄
functions.php
(326 B)
📄
gulpfile.js
(15.69 KB)
📄
header.php
(1.19 KB)
📁
inc
📄
index.php
(466 B)
📁
languages
📄
package.json
(2.17 KB)
📄
page.php
(395 B)
📄
readme.txt
(9.55 KB)
📄
screenshot.jpg
(357.45 KB)
📄
searchform.php
(8.63 KB)
📄
sidebar.php
(409 B)
📄
single.php
(358 B)
📁
static
📄
style.css
(884 B)
📁
template-parts
📄
theme.json
(1.41 KB)
📁
tutor
📁
woocommerce
📄
wpml-config.xml
(4.15 KB)
Editing: comments.php
<?php /** * The template for displaying comments * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Blocksy */ if ( post_password_required() ) { return; } $entity_singular = 'comment'; $entity_plural = 'comments'; $commenter = wp_get_current_commenter(); $prefix = blocksy_manager()->screen->get_prefix(); $comments_position = blocksy_get_theme_mod($prefix . '_comments_position', 'below'); do_action('blocksy:comments:before'); $html_atts = [ 'class' => 'ct-comments', 'id' => 'comments' ]; if (blocksy_get_theme_mod( $prefix . '_comments_containment', 'separated' ) === 'contained' ) { $html_atts['class'] .= ' is-width-constrained'; } $deep_link_args = [ 'prefix' => $prefix, 'suffix' => $prefix . '_has_comments', 'return' => 'array', ]; $html_atts = array_merge( $html_atts, blocksy_generic_get_deep_link( $deep_link_args ) ); ?> <div <?php echo blocksy_attr_to_html($html_atts); ?>> <?php do_action('blocksy:comments:top'); ?> <?php if ( have_comments() ) : $label_tag = blocksy_get_theme_mod($prefix . '_comments_heading_tag', 'h3'); ?> <<?php echo esc_html($label_tag); ?> class="ct-comments-title"> <?php comments_number( esc_html__( 'No comments yet', 'blocksy' ), __( 'One comment', 'blocksy' ), __( '% Comments', 'blocksy' ) ); ?> </<?php echo esc_html($label_tag); ?>> <?php endif; // have_comments() ?> <?php if ( $comments_position === 'above' ) comment_form(); ?> <?php if ( have_comments() ) : ?> <ol class="ct-comment-list"> <?php wp_list_comments( [ 'short_ping' => true, 'avatar_size' => 100, 'callback' => 'blocksy_custom_comment_template', 'end-callback' => function () { echo '</li>'; } ] ); ?> </ol> <?php // Are there comments to navigate through? if (get_comment_pages_count() > 1 && get_option('page_comments')) : ?> <nav class="ct-comment-navigation-container"> <h4 class="screen-reader-text section-heading"> <?php esc_html_e( 'Comment navigation', 'blocksy' ); ?> </h4> <div class="ct-comments-navigation"> <span class="prev"> <?php previous_comments_link( __( '← Older Comments', 'blocksy' ) ); ?> </span> <span class="next"> <?php next_comments_link( __( 'Newer Comments →', 'blocksy' ) ); ?> </span> </div> </nav> <?php endif; // Check for comment navigation ?> <?php if (! comments_open() && get_comments_number()) : ?> <p class="no-comments"> <?php esc_html_e( 'Comments are closed.', 'blocksy' ); ?> </p> <?php endif; ?> <?php endif; // have_comments() ?> <?php if ( $comments_position === 'below' ) comment_form(); ?> <?php do_action('blocksy:comments:bottom'); ?> </div> <?php do_action('blocksy:comments:after'); ?>
Upload File
Create Folder