i want get the "issue-cover" from archive page list, i done it. but it will cant get the meta value when i update/add new a post to the archice page.
<div class="monthly_archive">
<?php $values = get_post_custom_values("issue-cover");
if (isset($values[0])) {
?>
<a target="_blank" href="<?php $values = get_post_custom_values("issue-cover"); echo $values[0]; ?>" class="top-box-images"><img src="<?php $values = get_post_custom_values("issue-cover"); echo $values[0]; ?>" title="<?php echo get_post_meta($post->ID, 'issue', true); ?>"/></a>
<?php }
// if there's no img do replace it with no-img
else { ?>
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/no-img.gif" title="<?php echo get_post_meta($post->ID, 'issue', true); ?>"/>
<?php } ?>
<span class="issue"><?php echo get_post_meta($post->ID, 'issue', true); ?></span>
<span class="cover-by"><?php echo get_post_meta($post->ID, 'cover-by', true); ?></span>
</div>