页面显示其他php,php – 分页在所有其他页面上显示来自第1页的相同帖子

终于解决了这个:

function my_filter_where( $where = '' ) {

global $wp_query;

if (is_array($wp_query->query_vars['post_status'])) {

if (in_array('future',$wp_query->query_vars['post_status'])) {

// posts today into the future

$where .= " AND post_date > '" . date('Y-m-d', strtotime('now')) . "'";

}

}

return $where;

}

add_filter( 'posts_where', 'my_filter_where' );

和:

$wp_query = array(

'post__not_in' => array(4269),

'paged' => get_query_var('paged'),

'post_type' => 'whatson',

'exclude' => '4269',

'posts_per_page' => 20,

'order' => 'ASC',

'orderby' => 'date',

'post_status' =>array('future','published'));

query_posts($wp_query);

?>

if ($wp_query->have_posts()) {

while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>

Content

} ?>

<?php if (function_exists('wp_pagenavi')) { wp_pagenavi( array( 'query' => $wp_query ) ); } ?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值