HEX
Server: Apache/2.4.25
System: Linux ion14 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64
User: (10087)
PHP: 7.4.30
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,system, exec, shell_exec, passthru, popen, proc_open
Upload Files
File: /home/www/web115/wordpress/wp-content/themes/osmosis/content.php
<?php
/**
 * The default post template
 */
?>

<?php
if ( is_singular() ) {
	$grve_disable_media = grve_post_meta( 'grve_disable_media' );
?>

	<article id="post-<?php the_ID(); ?>" <?php post_class('grve-single-post'); ?> itemscope itemType="http://schema.org/BlogPosting">

		<?php
			if ( has_post_thumbnail() && grve_visibility( 'post_feature_image_visibility', '1' ) && 'yes' != $grve_disable_media && !post_password_required() ) {
		?>
		<div id="grve-single-media">
			<div class="grve-media clearfix">
				<?php the_post_thumbnail( 'grve-image-fullscreen' ); ?>
			</div>
		</div>
		<?php
			}
		?>

		<div id="grve-post-content">
			<?php grve_print_post_header_title( 'content' ); ?>
			<?php osmosis_grve_print_post_structured_data(); ?>
			<?php grve_print_post_single_meta(); ?>
			<div itemprop="articleBody">
				<?php the_content(); ?>
			</div>
		</div>
	</article>

<?php
} else {
	$grve_post_class = grve_get_post_class();
?>

	<article id="post-<?php the_ID(); ?>" <?php post_class( $grve_post_class ); ?> itemscope itemType="http://schema.org/BlogPosting">
		<?php do_action( 'grve_inner_post_loop_item_before' ); ?>
		<?php grve_print_post_feature_media( 'image' ); ?>
		<div class="grve-post-content">
			<?php do_action( 'grve_inner_post_loop_item_title_link' ); ?>
			<?php osmosis_grve_print_post_structured_data(); ?>
			<div class="grve-post-meta">
				<?php grve_print_post_author_by(); ?>
				<?php grve_print_post_date(); ?>
				<?php grve_print_post_comments(); ?>
				<?php grve_print_like_counter(); ?>
			</div>
			<div itemprop="articleBody">
				<?php grve_print_post_excerpt(); ?>
			</div>
		</div>
		<?php do_action( 'grve_inner_post_loop_item_after' ); ?>
	</article>

<?php

}

//Omit closing PHP tag to avoid accidental whitespace output errors.