0
我有我的主頁(wp nivo滑塊)的滑塊腳本,但只希望顯示幻燈片(帖子),如果今天的日期是post_end_date(自定義字段)之前。這樣我就不必手動刪除不再相關的帖子。WordPress的:根據自定義字段顯示帖子
這是加載帖子的代碼。任何幫助將不勝感激。
自定義後場: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();?>