I've got featured content gallery running on my blog home page that isn't working, http://www.joetuck.com/blog/
I'm using the thesis wordpress theme and I've put the gallery on the home page using php:
- Code: Select all
function featured_content() {
if (is_home()) { ?>
<div id="featured_content">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
</div>
<?php }
}
Sadly the images that the gallery references are not appearing. I'm using id numbers to determine post/pages and I've added images, thumbs and text in custom fields that are all in a absolute location.
Any ideas?









