设置的第三个参数时get_post_meta()
到false
, 它返回映射到该键的所有值的数组-将此参数设置为true
返回单个值。
因此,您的代码是正确的。如果你这样做,你会得到完全相同的结果:
$test = array( "1", "2", "3" );
echo $test; // prints "Array"
如果要查看数组的内容,需要使用
print_r()
:
$item = get_post_meta( $post->ID, \'multiedit_Info\', false );
echo print_r( $item );
如果你用
$test
从上面的示例中,可以看到:
Array
(
[0] => "1"
[1] => "2"
[2] => "3"
)