从自定义字段中获取值

时间:2015-05-18 15:37:29

标签: php wordpress

我有像这样的自定义字段

enter image description here

我想要每个帖子获得" adresse-complete" (对不起,用法语)

这是我的代码

$type = 'agences';
$args=array(
 'post_type' => $type,
 'post_status' => 'publish',
 'posts_per_page' => -1,
 'caller_get_posts'=> 1

 );

$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  while ($my_query->have_posts()) : $my_query->the_post(); ?>
   <p><?php the_title(); ?></p>
   <p><?php echo get_post_meta($post->ID, 'adresse-complete', true) ?></p>
 <?php
 endwhile;
 } wp_reset_query();  

它很好地显示了标题,但没有显示&#39; adresse-complete&#39;

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

也许你的plaugin / theme使用了另一个自定义域名?似乎'adresse-complete'是你输入的slug。如果是这样,您可以在循环中使用以下代码找到字段键:

<?php
$customfields = get_post_custom();
foreach ( $customfields as $fieldkey => $fieldvalues ) {
    foreach ( $fieldvalues as $key => $value )
        echo 'Key: ' . $fieldkey . ' , Value: ' . $value . '<br />';
}
?>