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/wpprm/wp-content/themes/ronneby/templates/blog/single-base.php
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
global $dfd_ronneby; ?>
<article <?php post_class(); ?>>
	<div class="entry-data">
		<figure class="author-photo">
			<?php echo get_avatar( get_the_author_meta('ID') , 40 ); ?>
		</figure>
		<?php get_template_part('templates/entry-meta', 'post-bottom'); ?>
	</div>

	<div class="entry-content">

		<?php     

		if(!get_post_format()) {
			get_template_part($post->ID, 'standard');
			the_content();
		} elseif (has_post_format('video')) {
			get_template_part('templates/post', 'video');
			the_content();
		} elseif (has_post_format('gallery')) {
			get_template_part('templates/post', 'gallery');
			the_content();
		} elseif (has_post_format('quote')) {
			get_template_part('templates/post', 'quote');
		} elseif (has_post_format('audio')) {
			get_template_part('templates/post', 'audio');
			the_content();
		}
	 ?>

	</div>
	<div class="dfd-meta-container">
		<div class="post-like-wrap left">
			<?php get_template_part('templates/entry-meta/mini-like', 'old'); ?>
			<div class="box-name"><?php _e('Recommend', 'dfd'); ?></div>
		</div>
		<div class="dfd-single-share left">
			<?php
			if (isset($dfd_ronneby['post_share_button']) && $dfd_ronneby['post_share_button']) {
				get_template_part('templates/entry-meta/mini', 'share-popup');
			}
			?>
			<div class="box-name"><?php _e('Share', 'dfd'); ?></div>
		</div>
		<div class="dfd-single-tags right">
			<?php get_template_part('templates/entry-meta/mini', 'tags'); ?>
			<div class="box-name"><?php _e('Tagged in', 'dfd'); ?></div>
		</div>
	</div>

</article>