/ Published in: PHP
You will probably have to hide the medium sized image.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function custom_attachment() { if (is_attachment()) { echo wp_get_attachment_image( $post->ID, 'full' ); } } add_action('thesis_hook_before_post', 'custom_attachment');