HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (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/bak/wintergenomics_site/wp-content/themes/radcliffe/image.php
<?php get_header(); ?>

<div class="content">
											        
	<?php if ( have_posts() ) : 
		
		while ( have_posts() ) : the_post( 'post single' ); ?>
	
			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			
				<div class="section">
			
					<?php 
					
					$image_array = wp_get_attachment_image_src( $post->ID, 'full', false ); 
					$url = $image_array['0']; 
					
					?>
				
					<div class="section-inner thin">
		
						<?php echo wp_get_attachment_image( $post->ID, 'post-image' ); ?>
						
					</div>
					
					<div class="post-header section">
					
						<div class="post-meta-top">
						
							<?php echo get_the_time( get_option( 'date_format' ) ) . ' <span class="sep">/</span> ' . $image_array['1'] . '<span style="text-transform: lowercase;">x</span>' . $image_array['2'] . ' px'; ?>
						
						</div>
					
						<h2 class="post-title"><?php echo basename( get_attached_file( $post->ID ) ); ?></h2>
					
					</div><!-- .post-header -->
					
					<?php 

					$image_caption = get_post( get_post_thumbnail_id() )->post_excerpt;
					
					if ( $image_caption ) : ?>
														
						<div class="post-content section-inner thin">
						
							<p><?php echo $image_caption; ?></p>
							
						</div>
						
					<?php endif; ?>
				
				</div><!-- .post -->
				
				<?php
				
				comments_template( '', true );
																					
			endwhile;

		endif; 
		
		?>    
			
	</div><!-- .post -->

</div><!-- .content -->
		
<?php get_footer(); ?>