我正在使用Ajax Search Lite插件通过我的帖子搜索某些内容,我希望在搜索内容时,每页显示10个帖子,但可以选择查看下一个10,依此类推。我尝试在阅读设置中设置每页10个帖子,但它只显示前10个,并且没有选项可以看到下一个10个。
这是我的search.php中的代码
<?php echo do_shortcode('[wpdreams_ajaxsearchlite]'); ?>
<?php
if (have_posts()) : //se ci sono post
while (have_posts()) : the_post();
?>
<article class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
<h3><?php the_content(); ?></h3>
</article>
<?php endwhile;
else :
echo '</br><p> No results</p>';
endif;?>