Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
home
/
getwphos
/
www
/
deerguard
/
wp-content
/
themes
/
garland
/
classes
/
File Content:
class-garland-walker-comment.php
<?php /** * Custom comment walker for this theme. * * @package WordPress * @subpackage zozothemes * @since 1.0.0 */ if ( ! class_exists( 'Garland_Walker_Comment' ) ) { class Garland_Walker_Comment extends Walker_Comment { protected function html5_comment( $comment, $depth, $args ) { $tag = ( 'div' === $args['style'] ) ? 'div' : 'li'; ?> <<?php echo esc_attr( $tag ); ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>> <div id="div-comment-<?php comment_ID(); ?>" class="comment-body"> <footer class="comment-meta"> <div class="comment-author vcard"> <?php $comment_author_url = get_comment_author_url( $comment ); $comment_author = get_comment_author( $comment ); $avatar = get_avatar( $comment, $args['avatar_size'] ); if ( 0 !== $args['avatar_size'] ) { if ( empty( $comment_author_url ) ) { echo wp_kses_post( $avatar ); } else { printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url ); echo wp_kses_post( $avatar ); } } printf( '<span class="fn">%1$s</span><span class="screen-reader-text says">%2$s</span>', esc_html( $comment_author ), esc_html__( 'says:', 'garland' ) ); if ( ! empty( $comment_author_url ) ) { echo '</a>'; } ?> </div><!-- .comment-author --> <div class="comment-metadata"> <a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> <?php /* Translators: 1 = comment date, 2 = comment time */ $comment_timestamp = sprintf( __( '%1$s at %2$s', 'garland' ), get_comment_date( '', $comment ), get_comment_time() ); ?> <time datetime="<?php comment_time( 'c' ); ?>" title="<?php echo esc_attr( $comment_timestamp ); ?>"> <?php echo esc_html( $comment_timestamp ); ?> </time> </a> <?php if ( get_edit_comment_link() ) { echo ' <span aria-hidden="true">•</span> <a class="comment-edit-link" href="' . esc_url( get_edit_comment_link() ) . '">' . __( 'Edit', 'garland' ) . '</a>'; } ?> </div><!-- .comment-metadata --> </footer><!-- .comment-meta --> <div class="comment-content entry-content"> <?php comment_text(); if ( '0' === $comment->comment_approved ) { ?> <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'garland' ); ?></p> <?php } ?> </div><!-- .comment-content --> <?php $comment_reply_link = get_comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<span class="comment-reply">', 'after' => '</span>', ) ) ); $by_post_author = garland_is_comment_by_post_author( $comment ); if ( $comment_reply_link || $by_post_author ) { ?> <footer class="comment-footer-meta"> <?php if ( $comment_reply_link ) { echo '<div class="comment-reply-link">'. $comment_reply_link .'</div>'; } if ( $by_post_author ) { echo '<span class="by-post-author">' . esc_html__( 'By Post Author', 'garland' ) . '</span>'; } ?> </footer> <?php } ?> </div><!-- .comment-body --> </<?php echo esc_attr( $tag ); ?>> <?php } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-garland-walker-comment.php
3602 bytes
0644
class.garland-wp-elements.php
18437 bytes
0644
class.garland-wp-framework.php
11105 bytes
0644
N4ST4R_ID | Naxtarrr