カスタムフィールド「価格」で並べ替えられたページで投稿を取得しようとしています。注文は完了しましたが、「価格」の値がエコーされません。get_post_meta は何も出力しません。コードは次のとおりです。
$args=array(
'meta_key'=>'price',
'post_type' => 'page',
'orderby'=>'meta_value_num',
'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() ) {
$count=0;
while ($count<4 && $my_query->have_posts()) : $my_query->the_post(); ?>
<td><a href="<?php the_permalink(); ?>">
<img alt="product" src="/product-images/image.jpg" height="100px" width="75px"/>
<p><?php the_title(); ?></p>
<?php echo get_post_meta($my_query->ID, 'price', true); ?>
</a>
</td>
<?php
$count++;
endwhile;
}
wp_reset_query(); // Restore global post data stomped by the_post().
?>