php WordPress分页指示符“显示20个帖子中的第28 - 29个帖子”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress分页指示符“显示20个帖子中的第28 - 29个帖子”相关的知识,希望对你有一定的参考价值。

<?php
$paged = max(1, (int) $wp_query->query_vars['paged']);
$first_post_index = $paged === 1 ? 1 : ((($paged - 1) * (int) $wp_query->query_vars['posts_per_page']) + 1);
$last_post_index = (($first_post_index + (int) $wp_query->post_count) - 1);
echo "Showing {$first_post_index} – {$last_post_index} of {$wp_query->found_posts} posts";
?>

以上是关于php WordPress分页指示符“显示20个帖子中的第28 - 29个帖子”的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress category.php 分页 404 错误

php WordPress的Bootstrap分页

php WordPress:使用$ wpdb进行分页

php 自定义帖子类型分页WordPress

php Wordpress中的分页

php WordPress的Bootstrap分页