我的主页(wp nivo滑块)有一个滑块脚本,但只想显示幻灯片(帖子),如果今天的日期早于post_end_date(自定义字段)。这样我就不必手动删除不再相关的帖子了。
这是加载帖子的代码。任何帮助将不胜感激。
自定义帖子字段: post_end_date
<?php
$category = get_option('wpns_category');
$n_slices = get_option('wpns_slices');
?>
<?php query_posts( 'cat='.$category.'&posts_per_page=$n_slices' ); if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<?php if ( '' != get_the_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail(); ?>
</a>
<?php endif ?>
<?php endwhile; endif;?>
<?php wp_reset_query();?>
答案 0 :(得分:0)
<?php $meta_values = get_post_meta($post_id, $key, $single); ?>
在这个函数中$ postid是wich的id进入循环,key是自定义字段的名称,最后在$ single中你可以写为true的false 通过此函数获取自定义fild后,尝试自定义postfeild值的if条件
希望这会对你有所帮助