那么,您正在使用:
get_post_meta(get_the_ID(), \'subtitle\', TRUE);
因此,您要对Wordpress说,获取“subtitle”字段的元值,并返回字符串格式的值。看见
get_post_meta() docu.
要获取帖子的所有元数据,您应该使用get_post_custom() 功能。例如,如果您在循环中:
$custom = get_post_custom();
foreach($custom as $key => $value) {
echo $key.\': \'.$value.\'<br />\';
}
这将返回帖子的所有元数据。例如,如果要检查“价格”元字段:
if(isset($custom[\'price\'])) {
echo \'Price: \'.$custom[\'price\'][0];
}