这是我的函数文件中添加无限滚动的代码。一切都很好,除非当我点击更多帖子时我只得到一个,即使我的代码说要抓住10.任何线索为什么会发生这种情况?
function template_name_infinite_scroll_init() {
get_template_part( 'content-post-standard' );
//this file contains the post format that I want to load.
}
add_theme_support( 'infinite-scroll', array(
'type' => 'click',
'footer_widgets' => false,
'container' => 'infinite',
'wrapper' => false,
'render' => 'template_name_infinite_scroll_init',
'posts_per_page' => 10,
'footer' => 'footer'
));