我的主页有一个滑块脚本(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();?>