<?php /** * * attachment.php * * Attachment template. Used when viewing a single attachment. * */ get_header(); ?> <?php get_sidebar('top'); ?> <?php if (have_posts()) { the_post(); get_template_part('content', 'attachment'); /* Display comments */ if (theme_get_option('theme_allow_comments')) { comments_template(); } } else { theme_404_content(); } ?> <?php get_sidebar('bottom'); ?> <?php get_footer(); ?>