我已经安装了 Wordpress Jetpack 并配置了我的所有内容functions.php
,但由于某种原因它无法正常工作。我已按照这些说明以及 Jetpack 网站上的说明进行操作,但似乎没有加载任何内容...开发人员工具显示 AJAX 响应为{“type”:“empty”}
。
我希望从自定义分类中加载项目。在archive.php
页面上,我有一些简单的 PHP 可以加载内容:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
content.php
包含每个帖子的模板,作为一个静态页面,它可以正常工作。我已经安装了 Jetpack 并将以下内容放在我的functions.php
:
function bones_infinite_loop_init(){
add_theme_support( 'infinite-scroll', array(
'type' => 'scroll',
'container' => 'masonry',
'render' => 'bones_infinite_scroll_render',
'footer' => false
) );
}
add_action( 'init', 'bones_infinite_loop_init' );
function bones_infinite_scroll_render() {
$args = array( 'post_type'=> 'wigwam','post_parent' => 0,'posts_per_page' => 25);
query_posts( $args );
if (have_posts()) :
while (have_posts()) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;
endif;
}
但是什么都没有进来。我该如何调试呢?