HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wppartneramazingsecret/wp-content/themes/themify-ultra/includes/loop.php
<?php
/**
 * Template for generic post display.
 * @package themify
 * @since 1.0.0
 */
global $themify;
?>
<?php themify_post_before(); // hook ?>
<article id="post-<?php the_id(); ?>" <?php post_class( 'post tf_clearfix' ); ?>>
	<?php themify_post_start(); // hook ?>
    
	<?php if( $themify->hide_image !== 'yes' && ('below' !== $themify->media_position  || $themify->post_layout_type==='overlay')){ 
	    if($themify->unlink_title!=='yes' || $themify->unlink_image!=='yes'):?>
		<a <?php themify_permalink_attr(); ?> aria-label="<?php the_title_attribute() ?>" data-post-permalink="yes" style="display: none;"></a>
	    <?php endif;
	    themify_post_media();
	}?>
	<div class="post-content">
		<div class="post-content-inner">

			<?php if ( $themify->hide_date !== 'yes' ) : ?>
				<?php themify_theme_post_date(); ?>
			<?php endif; //post date ?>

			<?php themify_post_title(); ?>

			<?php if ( $themify->hide_meta !== 'yes' ) : ?>
				<p class="post-meta entry-meta">
					<?php if ( $themify->hide_meta_author !== 'yes' ): ?>
						<span class="post-author"><?php echo themify_get_author_link() ?></span>
					<?php endif; ?>

					<?php themify_meta_taxonomies(!empty($themify->post_module_tax)?$themify->post_module_tax:'','<span class="separator">, </span>'); ?>

					<?php if ( $themify->hide_meta_tag !== 'yes' ): ?>
						<?php the_terms( get_the_id(), 'post_tag', ' <span class="post-tag">', '<span class="separator">, </span>', '</span>' ); ?>
					<?php endif; // meta tag ?>

					<?php themify_comments_popup_link(array('icon'=>'fas comment'));?>
				</p>
				<!-- /post-meta -->
			<?php endif; //post meta ?>

			<?php if($themify->hide_image !== 'yes' && 'below' === $themify->media_position && $themify->post_layout_type!=='overlay') themify_post_media(); ?>

			<?php themify_post_content()?>

		</div>
		<!-- /.post-content-inner -->
	</div>
	<!-- /.post-content -->
	<?php themify_post_end(); // hook ?>

</article>
<!-- /.post -->
<?php themify_post_after(); // hook