只需将该片段替换为以下片段:
<?php
$pages = paginate_comments_links([\'echo\' => false, \'type\' => \'array\']);
if( is_array( $pages ) ) {
$output = \'\';
foreach ($pages as $page) {
$page = "\\n<li>$page</li>\\n";
if (strpos($page, \' current\') !== false)
$page = str_replace([\' current\', \'<li>\'], [\'\', \'<li class="active">\'], $page);
$output .= $page;
}
?>
<nav aria-label="Comment navigation">
<ul class="pagination">
<?=$output?>
</ul>
</nav>
<?php
}
?>
这段代码以数组的形式检索注释,这允许将每个注释自定义为仅为引导设置格式的无序列表。
它还取代了current
的WP类active
引导程序用于标记当前页面。
要使此代码正常工作,还需要添加bootstrap.css
标题中的文件。