怎么样:
$thumb = get_post_meta( $post_id, \'thumb\', true );
$url = get_post_meta( $post_id, \'website\', true);
echo "<a href=\'$url\'><img src=\'$thumb\' /></a>";
The
get_post_meta()
当您提前知道要检索的字段的名称时,此函数非常理想。将第三个参数设置为
true
告诉它您想要返回一个值,而不是一个值数组(可以使用同一个元键设置多个值,然后返回一个值数组)。