检索一些元数据的方法是知道自定义字段的名称,例如我将使用的示例:列表、属性和地址;通常可以在while (have_posts()) : the_post();
$listing = get_post_meta($post->ID, \'listing\', true);
$property = get_post_meta($post->ID, \'property\', true);
$address = get_post_meta($post->ID, \'address\', true);
然后可以打印输出,如下所示
echo $listing; 根据您的需要。