我用我的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”自定义字段。我该怎么做
(很抱歉我的英语不好)