HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.30.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 11 06:42:00 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/www/wp-content/themes/bloglo/template-parts/entry/entry-show-comments.php
<?php
/**
 * Template part for displaying ”Show Comments” button.
 *
 * @package     Bloglo
 * @author      Peregrine Themes
 * @since       1.0.0
 */

// Do not show if the post is password protected.
if ( post_password_required() ) {
	return;
}

$bloglo_comment_count = get_comments_number();
$bloglo_comment_title = esc_html__( 'Leave a Comment', 'bloglo' );

if ( $bloglo_comment_count > 0 ) {
	/* translators: %s is comment count */
	$bloglo_comment_title = esc_html( sprintf( _n( 'Show %s Comment', 'Show %s Comments', $bloglo_comment_count, 'bloglo' ), $bloglo_comment_count ) );
}

?>
<a href="#" id="bloglo-comments-toggle" class="bloglo-btn btn-large btn-fw btn-left-icon">
	<?php echo bloglo()->icons->get_svg( 'chat' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
	<span><?php echo $bloglo_comment_title; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
</a>