我编辑了这个php文件,一次加载12个帖子,但是我意识到代码也最多加载了12个页面。在第12页之后,它说“没有更多帖子加载”即使有还是帖子。我应该如何编辑此代码以允许每次加载12个帖子来加载无限页面?
<?php
function pbd_alp_init() {
global $wp_query;
// Add code to index pages.
//if( !is_singular() ) {
if( !is_single() ) {
// Queue JS and CSS
wp_enqueue_script(
'pbd-alp-load-posts',
plugin_dir_url( __FILE__ ) . 'js/load-posts.js',
array('jquery'),
'1.0',
true
);
wp_enqueue_style(
'pbd-alp-style',
plugin_dir_url( __FILE__ ) . 'css/style.css',
false,
'1.0',
'all'
);
// What page are we on? And what is the pages limit?
$max = $wp_query->max_num_pages;
if(is_page_template('template-blog.php')){
$max = wp_count_posts()->publish;
//default is 6 posts per page
if($max % 12 == 0){
$max = $max / 12;
}else{
$max = (int)($max / 12) + 1;
}
}
$paged = ( get_query_var('paged') > 1 ) ? get_query_var('paged') : 1;
// Add some parameters for the JS.
wp_localize_script(
'pbd-alp-load-posts',
'pbd_alp',
array(
'startPage' => $paged,
'maxPages' => $max,
'nextLink' => next_posts($max, false)
)
);
}
} add_action('template_redirect','pbd_alp_init');
&GT;
答案 0 :(得分:0)
您不希望一次加载无限页面。您想要发送12 - 36的查询,具体取决于您的网站流量。然后,每个后续请求都将获得订单中的下一个请求。使用count()总帖子,并做一个for循环。保存javascript中的最后一个帖子ID,用于下一个ajax调用,开始,+ 12等。这很好,还是你需要我亲自为你编写代码?