0

我正在使用get_post_meta($post->ID);,它返回如下结果。

我需要将这些字段 wpcf-business_listing_title、wpcf-street_address、wpcf-city 等的实际值打印到屏幕上。

我该怎么做?谢谢!

array(25) { 
    ["wpcf-business_listing_title"]=> array(1) {
         [0]=> string(17) "Davis Car Dealer" 
     } 
    ["wpcf-street_address"]=> array(1) { 
        [0]=> string(21) "720 Olympad Drive Ste X" 
     } 
    ["wpcf-city"]=> array(1) { 
        [0]=> string(5) "Portland" 
     } 
    ["wpcf-state_abbreviation"]=> array(1) { 
        [0]=> string(2) "ME" 
     } 
    ["wpcf-full_state_name"]=> array(1) {
        [0]=> string(10) "Maine" 
     } 
    ["wpcf-zip_code"]=> array(1) { 
        [0]=> string(5) "95616" 
     } 
    ["wpcf-county"]=> array(1) { 
        [0]=> string(4) "Yolo" 
    } 
    ["wpcf-phone_number"]=> array(1) { 
        [0]=> string(12) "555-755-3666" 
    }
}
4

1 回答 1

1

在这里,您可以给出特定的字段 slug 名称,例如您用于 wpcf-street_address 然后您想给出

$wpcf-street_address = get_post_meta($post->ID,'wpcf-street_address',true);

这为您提供了特定的字段值。

于 2013-02-23T10:16:02.113 回答