HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/www/wp-content/plugins/essential-blocks/views/post-partials/meta/footer.php
<?php

$footerMetaHtml = '';
if ( isset( $showMeta ) && $showMeta ) {
	if ( in_array( 'avatar', $footerMeta ) ) {
		$footerMetaHtml .= $_meta_html['avatar'];
	}
	$footerMetaHtml .= '<div class="ebpg-entry-meta-items">';
	foreach ( $footerMeta as $meta ) {
		if ( $meta === 'avatar' ) {
			continue;
		}

		if ( is_array( $_meta_html ) && array_key_exists( $meta, $_meta_html ) ) {
			$footerMetaHtml .= $_meta_html[ $meta ];
		}
	}
	$footerMetaHtml .= '</div>';
}

if ( ! empty( $footerMetaHtml ) ) {
	$footerMetaHtml = sprintf(
		'<div class="ebpg-entry-meta ebpg-footer-meta">%1$s</div>',
		$footerMetaHtml
	);
}

return $footerMetaHtml;