0
我一直試圖讓無限滾動工作,但似乎無法讓它工作。Jetpack Infinite Scroll無法正常工作
我有三個文件後循環content-post-ft.php
,the functions.php
然後我的頭版,其中職位加載frontpage.php
的functions.php
add_theme_support('infinite-scroll', array(
'container' => 'main-content',
'type' => 'scroll',
'footer' => 'foot',
'render' => 'infinite_scroll_render'
));
function infinite_scroll_render() {
get_template_part('content-post-ft', 'standard');
}
內容後ft.php
<div class="hub-cont">
<?php
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src($thumb_id, 'thumbnail-size', true);
$thumb_url = $thumb_url_array[0];
?>
<div id="newsitem">
<div id="newsimg" style="background-image: url('<?php echo $thumb_url ?>')">
<a href="<?php the_permalink(); ?>"></a>
</div>
<div id="newsname"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </div>
<div id="newstext"><?php $text = $post->post_content; $trimmed = wp_trim_words($text, 40, null); echo $trimmed; ?></div>
<div class="clear"></div>
</div>
<?php
// endwhile;
// endif;
wp_reset_postdata();?>
</div>
Frontpage.php
<div id="main-content">
<?php
$myargs = array (
//'showposts' => 2,
'post_type' => 'post',
'category_name' => 'News'
);
$myquery = new WP_Query($myargs);
if($myquery->have_posts()) :
while($myquery->have_posts()) : $myquery->the_post();
get_template_part('content-post-ft', get_post_format());
endwhile;
endif;
?>
</div>
我已經試過看着這麼多的教程和其他人有類似的問題,但似乎沒有奏效。
該頁面顯示,因爲循環的10個職位,但它只是增加了10,不「滾動」
得到這個固定的將真正幫助我的應力水平!
您是否試過在[瀏覽器控制檯](https://developer.mozilla.org/en-US/docs/Tools/Web_Console)中查找?任何錯誤? – max 2014-09-23 09:34:49
沒有我能看到的錯誤。該頁面不想使用無限滾動來處理任何原因。 我也有一個檢查頁面,以確保它正在運行,它是。只是有些東西阻止它工作,我不知道是什麼。 – Kyon147 2014-09-25 19:50:35