https://jetpack.com/support/infinite-scroll/
buradaki önergeleri temama ekledim ama aşağı kaydırınca yüklenme olmuyor.
index.php kodları
<div class="container" id="deneme">
<div class="deneme-division">
<table class="table">
<tbody>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts( 'posts_per_page=15&paged='.$paged.''); ?>
<?php while (have_posts()) : the_post(); ?>
<tr>
<td><?php the_post_thumbnail('thumbnail', array('class' => 'img-rounded shadow-2 logo-list')); ?></td>
<td><h3><?php the_title(); ?></h3></td>
<td>
<?php foreach((get_the_category()) as $cat) {
echo '<li class="list-inline-item"><a href="'
.get_category_link($cat). '"><span class="label label-pill label-default pill-category label-pill-dark">' . $cat->cat_name .
'</span></a></a></li>';
} ?>
</td>
<td><?php if(function_exists('the_ratings')) { the_ratings(); } ?></td>
<td><a href="<?php the_permalink(); ?>"><button type="button" class="btn btn-primary shadow-2 btn-lin">Dinle</button></a></td>
</tr>
<?php endwhile; ?>
<?php
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'twentyfifteen' ),
'next_text' => __( 'Next page', 'twentyfifteen' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
) );
?>
</tbody>
</table>
</div>
</div>fonksiyon dosyasıadd_theme_support( 'infinite-scroll', array(
'type' => 'scroll',
'footer_widgets' => false,
'container' => deneme',
'wrapper' => true,
'render' => false,
'posts_per_page' => false,
) );