File: /home/dfwparty/bizcoach.biz/wp-content/themes/mh-magazine/image.php
<?php /* The template for displaying image attachments. */ ?>
<?php
get_header();
?>
<div class="mh-wrapper clearfix">
<div class="mh-main clearfix">
<div id="main-content" class="mh-content" role="main"><?php
while (have_posts()) : the_post();
mh_before_post_content(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
</header>
<figure class="entry-thumbnail">
<a href="<?php echo esc_url(wp_get_attachment_url($post->id)); ?>" title="<?php the_title_attribute(); ?>" rel="attachment" target="_blank">
<?php echo wp_get_attachment_image(
$post->id,
'full',
false,
array(
'class' => 'attachment-full',
'title' => get_the_title(),
'alt' => get_post_meta($post->id, '_wp_attachment_image_alt', true) ?: get_the_title()
)
); ?>
</a>
<?php if (has_excerpt()) { ?>
<figcaption class="mh-attachment-excerpt wp-caption-text">
<?php the_excerpt(); ?>
</figcaption>
<?php } ?>
</figure>
<?php if ($post->post_content != '') { ?>
<div class="mh-attachment-content entry-content clearfix">
<?php the_content(); ?>
</div>
<?php } ?>
</article><?php
mh_author_box();
mh_postnav();
mh_related_content();
mh_after_post_content();
comments_template();
endwhile; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php mh_second_sidebar(); ?>
</div>
<?php get_footer(); ?>