I'm a very basic web developer and starting this site
I downloaded and installed a template and there is a slider. I have set my featured image in the post but nothing will be added to the returned code.
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
<?php the_title_attribute(); ?>"><img class="iphone" src="<?php
bloginfo('template_directory'); ?>/timthumb.php?src=<?php echo
get_post_meta($post->ID, 'featured', true);?>&w=403&h=273&a=t"
alt="Post Pic" /> </a>
It's trying to get the image from here. Currently the echo is giving back nothing
echo get_post_meta($post->ID, 'featured', true);
you will notice currently on the site that the image inside the iphone wrapper. It's because it's currently hard coded
