我已经开始学习php,专门用于wordpress。
我想打印出自定义字段的值:
<?php echo get_post_custom_values("Gear",get_the_ID()); ?>
我回来了Array
。
有关如何打印数组的所有值或仅显示第一个值的任何建议吗?
感谢您的回复!
答案 0 :(得分:1)
get_post_custom_values返回与该键关联的值数组。 您需要使用print_r或var_dump来打印数组
<?php print_r(get_post_custom_values("Gear",get_the_ID())); ?>
或使用get_post_meta(get_the_ID(), 'Gear', true);
将单个值打印为字符串。将第三个参数传递为true将返回该键的单个值。
点击此处get_post_meta