i think it handles the images much better than using the clunky custom fields.
on lines 83 and 84 of gallery.php
change
- Code: Select all
<img src="<?php $key="articleimg"; echo get_post_meta($post->ID, $key, true); ?>" alt="<?php $key="alttext"; echo get_post_meta($post->ID, $key, true); ?>" class="full" />
<img src="<?php $key=$imgthumb; echo get_post_meta($post->ID, $key, true); ?>" alt="<?php $key="alttext"; echo get_post_meta($post->ID, $key, true); ?>" class="thumbnail" />
to
- Code: Select all
<img src="<?php echo p75GetThumbnail($post->ID, null, null); ?>" class="full" />
<img src="<?php echo p75GetThumbnail($post->ID, null, null); ?>" class="thumbnail" />









