显示同一关键字的多个值 时间:2014-07-30 作者:user31445 我将使用同一个键在自定义字段上输入多个值(我的键是link)。因此,值将是值A和值B这是我的单值自定义字段代码:<a href="<?php $key="link"; echo get_post_meta($post->ID, $key, true); ?>" target="_blank">Images Source</a> 所以问题是,如何显示多值一?正如您所看到的,我已经在上面为单个值编写了代码。 1 个回复 SO网友:Max Yudin <?php // get an array of multiple values $post_meta_array = get_post_meta($post->ID, \'link\'); // do not use \'true\' as the third argument // echo the link for each value foreach ($post_meta_array as $post_meta) { echo \'<a href="\' . $post_meta . \'" target="_blank">Images Source</a>\'; } 结束 文章导航