我编写了一个网站,我在最近的帖子中显示了特别是Cat on
<?php
$my_query = new WP_Query('showposts=10&cat=2');
while ($my_query->have_posts()):
$my_query->the_post();
$do_not_duplicate = $post->ID;?>
<div class=image><?php if ( has_post_thumbnail()) the_post_thumbnail('post-thumb'); ?></div>
<div class=title><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div>
<---here--->
<?php endwhile; ?>
我想知道我在哪里&lt; ---这里---&gt;显示我最近的帖子自定义字段
赞:价格
我怎么能这样做?
答案 0 :(得分:0)
请在&lt; --- here ---&gt;
中试用此代码<?php $price = get_post_meta( get_the_ID(), 'custom_field_name', true ); ?>
此处,&#39; custom_field_name&#39; = price //您的自定义字段名称。