私はワードプレスのウェブサイトで作業しています、私はこれで投稿の高度なカスタムフィールドからサムネイルを取得しようとしています:
<?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. ?>
問題は、Webサイトをロードすると、画像が取得する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