4

カスタムフィールド「価格」で並べ替えられたページで投稿を取得しようとしています。注文は完了しましたが、「価格」の値がエコーされません。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().
?>
4

1 に答える 1

10

現在の投稿の ID の代わりにWP_Query( )のプロパティを使用しようとしています。$IDの最初の引数はget_post_meta、 のプロパティではなく、投稿 ID にする必要がありますWP_Query

これがテンプレートのどこかにある場合、これを行うことができます:

<?php
while ($my_query->have_posts()) {
    $my_query->the_post();

    // use the global $post object
    echo get_post_meta($post->ID, 'price', true);
}

テンプレートファイルまたはグローバル$postが宣言されている場所にない場合は、get_the_ID代わりに次を使用できます。

<?php
while ($my_query->have_posts()) {
    $my_query->the_post();

    // use the global $post object
    echo get_post_meta(get_the_ID(), 'price', true);
}
于 2013-11-08T14:12:58.740 に答える