在试图显示自定义字段中的图像时,我得到了“第6行中的未定义变量”。它拉取文件的名称/链接;但不是图像。这是我的密码
<?php query_posts( \'cat=36&post_type=athletes&showposts=1&orderby=rand\'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(\'clearfix\'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
<a href="<?php the_permalink() ?>">Read More</a>
<?php $imageid = get_post_meta($post->ID, \'athletethumbnail\', true); ?>
<img src="<?php echo wp_get_attachment_url( $imageid ); ?>" height="192" width="192" />
<?php the_title(); ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>