0

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

1 回答 1

0
 <?php $meta_values = get_post_meta($post_id, $key, $single); ?>  

在这个函数中 $postid 是 wich 的 id 正在循环中,关键是最后在 $single 中的自定义字段的名称,您可以写 true 或 false 之后通过此函数获取自定义字段,然后尝试为您自定义 postfeild 值的 if 条件

希望对你有帮助

于 2013-03-20T04:23:44.027 回答