SILENT KILLERPanel

Current Path: > home > ivftiowh > greeceivf.com > > wp-content > > themes > twentytwelve


Operation   : Linux premium88.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software     : Apache
Server IP    : 185.61.154.216 | Your IP: 216.73.216.44
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/ivftiowh/greeceivf.com//wp-content//themes/twentytwelve

NameTypeSizeLast ModifiedActions
css Directory - -
inc Directory - -
js Directory - -
languages Directory - -
page-templates Directory - -
.htaccess File 160 bytes March 14 2024 10:52:21.
404.php File 840 bytes July 18 2024 05:16:00.
archive.php File 2063 bytes May 11 2016 14:01:36.
author.php File 2582 bytes May 11 2016 14:01:35.
category.php File 1429 bytes May 11 2016 14:01:35.
comments.php File 2166 bytes May 11 2016 14:01:35.
content-aside.php File 1271 bytes May 11 2016 14:01:35.
content-image.php File 1137 bytes May 11 2016 14:01:35.
content-link.php File 1170 bytes May 11 2016 14:01:35.
content-none.php File 592 bytes May 11 2016 14:01:35.
content-page.php File 859 bytes May 11 2016 14:01:35.
content-quote.php File 1113 bytes May 11 2016 14:01:35.
content-status.php File 1562 bytes May 11 2016 14:01:35.
content.php File 3052 bytes May 11 2016 14:01:35.
editor-style-rtl.css File 413 bytes May 11 2016 14:01:35.
editor-style.css File 5467 bytes May 11 2016 14:01:35.
error_log File 293 bytes August 18 2025 15:25:43.
footer.php File 746 bytes May 11 2016 14:01:35.
functions.php File 18471 bytes September 09 2025 11:07:20.
header.php File 3486 bytes September 10 2025 03:48:50.
html5.css File 6451 bytes September 04 2024 08:56:20.
image.php File 4367 bytes May 11 2016 14:01:35.
index.php File 2055 bytes May 11 2016 14:01:35.
page.php File 725 bytes May 11 2016 14:01:35.
readme.txt File 3145 bytes May 11 2016 14:01:35.
rtl.css File 4711 bytes May 11 2016 14:01:35.
screenshot.png File 323498 bytes May 11 2016 14:01:35.
search.php File 1347 bytes May 11 2016 14:01:35.
sidebar-front.php File 980 bytes May 11 2016 14:01:35.
sidebar.php File 418 bytes May 11 2016 14:01:35.
single.php File 1035 bytes May 11 2016 14:01:35.
slider.css File 57 bytes June 19 2024 11:30:44.
style.css File 36443 bytes May 11 2016 14:01:35.
tag.php File 1406 bytes May 11 2016 14:01:35.
twentytwelve.theme File 972 bytes June 24 2024 21:35:36.

Reading File: /home/ivftiowh/greeceivf.com//wp-content//themes/twentytwelve/image.php

<?php
/**
 * The template for displaying image attachments
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Twenty_Twelve
 * @since Twenty Twelve 1.0
 */

get_header(); ?>

	<div id="primary" class="site-content">
		<div id="content" role="main">

		<?php while ( have_posts() ) : the_post(); ?>

				<article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
					<header class="entry-header">
						<h1 class="entry-title"><?php the_title(); ?></h1>

						<footer class="entry-meta">
							<?php
								$metadata = wp_get_attachment_metadata();
								printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
									esc_attr( get_the_date( 'c' ) ),
									esc_html( get_the_date() ),
									esc_url( wp_get_attachment_url() ),
									$metadata['width'],
									$metadata['height'],
									esc_url( get_permalink( $post->post_parent ) ),
									esc_attr( strip_tags( get_the_title( $post->post_parent ) ) ),
									get_the_title( $post->post_parent )
								);
							?>
							<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
						</footer><!-- .entry-meta -->

						<nav id="image-navigation" class="navigation" role="navigation">
							<span class="previous-image"><?php previous_image_link( false, __( '&larr; Previous', 'twentytwelve' ) ); ?></span>
							<span class="next-image"><?php next_image_link( false, __( 'Next &rarr;', 'twentytwelve' ) ); ?></span>
						</nav><!-- #image-navigation -->
					</header><!-- .entry-header -->

					<div class="entry-content">

						<div class="entry-attachment">
							<div class="attachment">
<?php
/*
 * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
 * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
 */
$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
foreach ( $attachments as $k => $attachment ) :
	if ( $attachment->ID == $post->ID )
		break;
endforeach;

// If there is more than 1 attachment in a gallery
if ( count( $attachments ) > 1 ) :
	$k++;
	if ( isset( $attachments[ $k ] ) ) :
		// get the URL of the next image attachment
		$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
	else :
		// or get the URL of the first image attachment
		$next_attachment_url = get_attachment_link( $attachments[0]->ID );
	endif;
else :
	// or, if there's only 1 image, get the URL of the image
	$next_attachment_url = wp_get_attachment_url();
endif;
?>
								<a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
								/**
 								 * Filter the image attachment size to use.
								 *
								 * @since Twenty Twelve 1.0
								 *
								 * @param array $size {
								 *     @type int The attachment height in pixels.
								 *     @type int The attachment width in pixels.
								 * }
								 */
								$attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) );
								echo wp_get_attachment_image( $post->ID, $attachment_size );
								?></a>

								<?php if ( ! empty( $post->post_excerpt ) ) : ?>
								<div class="entry-caption">
									<?php the_excerpt(); ?>
								</div>
								<?php endif; ?>
							</div><!-- .attachment -->

						</div><!-- .entry-attachment -->

						<div class="entry-description">
							<?php the_content(); ?>
							<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
						</div><!-- .entry-description -->

					</div><!-- .entry-content -->

				</article><!-- #post -->

				<?php comments_template(); ?>

			<?php endwhile; // end of the loop. ?>

		</div><!-- #content -->
	</div><!-- #primary -->

<?php get_footer(); ?>

SILENT KILLER Tool