I couldnt find the file to put this info in
– this goes just in front of <?php the_content(); ?>
<?php
if (!isset($c) || $c != 1) {
$photo = get_preview_photo($id);
if (!empty($photo->thumb)) {
print($photo->preview_thumbnail());
}
}
?>
– this goes before the comments
<?php
if (isset($c) && $c == 1) {
$photos = get_post_photos($id);
$photos = get_thumbnail_grid($photos);
print($photos);
}
?>