| Server IP : 74.208.236.16 / Your IP : 216.73.216.174 Web Server : Apache System : Linux infongwp-us3 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u102440577 ( 7172810) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/44/d845879113/htdocs/app750263/wp-content/themes/simplemag/ |
Upload File : |
<?php
/**
* The template for displaying attached images
*
* @package SimpleMag
* @since SimpleMag 1.4
**/
get_header(); ?>
<section id="content" role="main" class="clearfix anmtd">
<div class="wrapper">
<header class="entry-header page-header">
<div class="page-title">
<h1 class="entry-title"><?php the_title(); ?></h1>
</div>
</header>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( wp_attachment_is_image( $post->id ) ) : $att_image = wp_get_attachment_image_src( $post->id, 'big-size' ); ?>
<p class="attachment">
<a href="<?php echo wp_get_attachment_url( $post->id ); ?>" title="<?php the_title(); ?>" rel="attachment">
<img src="<?php echo $att_image[0];?>" width="<?php echo $att_image[1];?>" height="<?php echo $att_image[2];?>" class="attachment-medium" alt="<?php $post->post_excerpt; ?>" />
</a>
</p>
<?php else : ?>
<a href="<?php echo wp_get_attachment_url( $post->ID ) ?>" title="<?php echo esc_html( get_the_title($post->ID), 1 ) ?>" rel="attachment">
<?php echo basename( $post->guid ) ?>
</a>
<?php endif; ?>
</article>
<?php endwhile; endif; ?>
</div>
</section><!-- #content -->
<?php get_footer(); ?>