JezK
Edit File: attachment.php
<!-- Attachment Page - Oketheme.com --> <?php get_header(); if (have_posts()): while (have_posts()) : the_post(); $thumb_id = get_post_thumbnail_id();$thumb_url = wp_get_attachment_image_src($thumb_id,'full', true);?> <div id="headback"> <div class="titleheader"> <h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <p class="small">Attachment Page | Upload: <?php the_time('j F Y'); ?></p> </div> </div> <div id="conwrap"> <div class="wrap-post" style="text-align:center;margin:20px 0;border-bottom:1px solid #F5F5F5;"> <img style="border:1px solid #F5F5F5;background:#FFF;padding:10px;" src="<?php echo $thumb_url[0];?>"> <?php the_content();?> <p> <a href="<?php echo get_permalink($post->post_parent) ?>" title="<?php echo get_the_title($post->post_parent) ?>"> <button class="ibtn"><i class="el-icon-link"></i> Original Post</button> </a> </p> </div> <?php randomtour();?> </div> <?php endwhile; endif; get_footer(); ?>