我如何获得Jetpacks'无限滚动加载多个帖子?

时间:2016-06-01 02:59:06

标签: wordpress infinite-scroll jetpack

这是我的函数文件中添加无限滚动的代码。一切都很好,除非当我点击更多帖子时我只得到一个,即使我的代码说要抓住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'
));

0 个答案:

没有答案
相关问题