HEX
Server: Apache
System: Linux p102.lithium.hosting 4.18.0-553.141.1.el8_10.x86_64 #1 SMP Fri Jul 10 17:48:02 UTC 2026 x86_64
User: bvzmoamr (9955)
PHP: 8.1.34
Disabled: syslog
Upload Files
File: /var/www/html/wp-content/themes/genesis-block-theme/template-parts/content-meta.php
<?php
/**
 * The template part for displaying the post meta information
 *
 * @package Genesis Block Theme
 */

?>
	<?php
	// Get the post meta.
	if ( ! is_page() ) {
		?>
		<ul class="meta-list">
			<?php
			// Post categories.
			if ( has_category() ) {
				?>
				<li>
					<span class="meta-title"><?php echo esc_html_e( 'Category:', 'genesis-block-theme' ); ?></span>

					<?php the_category( ', ' ); ?>
				</li>
			<?php } ?>

			<?php
			// Post tags.
			$tags = get_the_tags();
			if ( ! empty( $tags ) ) {
				?>
				<li>
					<span class="meta-title"><?php echo esc_html_e( 'Tag:', 'genesis-block-theme' ); ?></span>
					<?php the_tags( '' ); ?>
				</li>
			<?php } ?>
		</ul><!-- .meta-list -->
	<?php } ?>