query with custom field

时间:2011-08-09 作者:Fatih Toprak

我用我的jquery滑块解决了这个问题。需要帮助(:

我的问题是:

<?php $the_query = new WP_Query(\'showposts=10&orderby=post_date&order=desc\'); while ($the_query->have_posts()) : $the_query->the_post(); ?>
<?php $imaj = get_post_meta($post->ID, \'manset\', true); ?>

<?php the_permalink()?>
<img src="<?php echo $imaj; ?>" alt="" />

<?php endwhile;?>
<?php wp_reset_query(); ?>
通过此查询,the query 打印所有帖子。但我想显示的只是帖子中是否有“manset”自定义字段。我该怎么做

(很抱歉我的英语不好)

1 个回复
最合适的回答,由SO网友:scribu 整理而成

快速的谷歌搜索会将您引导到以下页面:

http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters

结束

相关推荐