我正在 wordpress 中的网站上工作,我正在尝试从帖子的高级自定义字段中获取缩略图:
<?php while ( have_posts() ) : the_post(); ?>
<h1><?php the_field('custom_title'); ?></h1>
<img src="<?php the_field('thumbnail'); ?>" alt="" />
<p><?php the_content(); ?></p>
<?php endwhile; // end of the loop. ?>
问题在于,当我加载网站时,图像获取的 url 如下所示:
<img src="5, , item_alt2, , , http://portfolio.local/wp-content/uploads/2012/09/item_alt2.jpg, Array">
因此,据我所知,它正在工作的插件会查找图像,但它会加载一个奇怪的路径,因此它显示为“损坏”的图像。
我做错了什么?
5, , item_alt2, , , http://portfolio.local/wp-content/uploads/2012/09/item_alt2.jpg, ArrayNULL