1

我目前正在使用插件 WP-CommentNavi 进行评论分页,但每当点击页面时,它都会转到最高评论页面(最旧的评论)。我的评论故意首先显示最新,因此每当单击链接时,我都需要默认分页页面为 1。

我注意到其他分页插件也有相同的默认设置,即显示最高分页页面(即如果有 5 页)第 5 页。

在我加载页面tellhi####.com/newcastle 的那一刻,将加载的页面是tellhi####.com/newcastle/comment-page-2/ 而我想要tellhi####.com/ newcastle/comment-page-1/ 待加载

我不能确定这是我想要实现的相关代码,但我觉得答案可能在这里(下)。如果没有,请告诉我并忽略此代码。

### Function: Comment Navigation: Boxed Style Paging
function wp_commentnavi($before = '', $after = '') {
    global $wp_query;
    $comments_per_page = intval(get_query_var('comments_per_page'));
    $paged = intval(get_query_var('cpage'));
    $commentnavi_options = get_option('commentnavi_options');
    $numcomments = intval($wp_query->comment_count);
    $max_page = intval($wp_query->max_num_comment_pages);
    if(empty($paged) || $paged == 0) {
        $paged = 1;
    }
    $pages_to_show = intval($commentnavi_options['num_pages']);
    $pages_to_show_minus_1 = $pages_to_show-1;
    $half_page_start = floor($pages_to_show_minus_1/2);
    $half_page_end = ceil($pages_to_show_minus_1/2);
    $start_page = $paged - $half_page_start;
    if($start_page <= 0) {
        $start_page = 1;
    }
    $end_page = $paged + $half_page_end;
    if(($end_page - $start_page) != $pages_to_show_minus_1) {
        $end_page = $start_page + $pages_to_show_minus_1;
    }
    if($end_page > $max_page) {
        $start_page = $max_page - $pages_to_show_minus_1;
        $end_page = $max_page;
    }
    if($start_page <= 0) {
        $start_page = 1;
    }
    if($max_page > 1 || intval($commentnavi_options['always_show']) == 1) {
        $pages_text = str_replace("%CURRENT_PAGE%", number_format_i18n($paged), $commentnavi_options['pages_text']);
        $pages_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pages_text);
        echo $before.'<div class="wp-commentnavi">'."\n";
        switch(intval($commentnavi_options['style'])) {
            case 1:
                if(!empty($pages_text)) {
                    echo '<span class="pages">'.$pages_text.'</span>';
                }
                if ($start_page >= 2 && $pages_to_show < $max_page) {
                    $first_page_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $commentnavi_options['first_text']);
                    echo '<a href="'.clean_url(get_comments_pagenum_link()).'" class="first" title="'.$first_page_text.'">'.$first_page_text.'</a>';
                    if(!empty($commentnavi_options['dotleft_text'])) {
                        echo '<span class="extend">'.$commentnavi_options['dotleft_text'].'</span>';
                    }
                }
                previous_comments_link($commentnavi_options['prev_text']);
                for($i = $start_page; $i  <= $end_page; $i++) {
                    if($i == $paged) {
                        $current_page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $commentnavi_options['current_text']);
                        echo '<span class="current">'.$current_page_text.'</span>';
                    } else {
                        $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $commentnavi_options['page_text']);
                        echo '<a href="'.clean_url(get_comments_pagenum_link($i)).'" class="page" title="'.$page_text.'">'.$page_text.'</a>';
                    }
                }
                next_comments_link($commentnavi_options['next_text'], $max_page);
                if ($end_page < $max_page) {
                    if(!empty($commentnavi_options['dotright_text'])) {
                        echo '<span class="extend">'.$commentnavi_options['dotright_text'].'</span>';
                    }
                    $last_page_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $commentnavi_options['last_text']);
                    echo '<a href="'.clean_url(get_comments_pagenum_link($max_page)).'" class="last" title="'.$last_page_text.'">'.$last_page_text.'</a>';
                }
                break;
            case 2;
                echo '<form action="'.admin_url('admin.php?page='.plugin_basename(__FILE__)).'" method="get">'."\n";
                echo '<select size="1" onchange="document.location.href = this.options[this.selectedIndex].value;">'."\n";
                for($i = 1; $i  <= $max_page; $i++) {
                    $page_num = $i;
                    if($page_num == 1) {
                        $page_num = 0;
                    }
                    if($i == $paged) {
                        $current_page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $commentnavi_options['current_text']);
                        echo '<option value="'.clean_url(get_comments_pagenum_link($page_num)).'" selected="selected" class="current">'.$current_page_text."</option>\n";
                    } else {
                        $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $commentnavi_options['page_text']);
                        echo '<option value="'.clean_url(get_comments_pagenum_link($page_num)).'">'.$page_text."</option>\n";
                    }
                }
                echo "</select>\n";
                echo "</form>\n";
                break;
        }
        echo '</div>'.$after."\n";
    }
}

简而言之,我需要在任何时候点击页面,评论分页位于第 1 页,而不是可用的最高页面。只是为了让您知道我已经尝试过 wordpress 仪表板上的讨论设置。谷歌上也没有!

没有完整的答案,有谁知道确定默认加载哪个分页页面的实际 php 代码?

我通过电子邮件收到了此回复,但由于我的 PHP 知识无法实现它,有什么想法吗?...

只需反转循环。那会解决它。这是相关部分: http: //pastie.org/8166399 你需要回去,即使用 $i--

这会改变默认的起始页面还是只是反转评论?希望我的问题很清楚!将不胜感激任何回应。

在此先感谢,保罗

4

1 回答 1

0

该选项一直在 Wordpress 中。见图片: http: //oi40.tinypic.com/35aj3pt.jpg

如果有人对您操作的特定代码有答案,仍然在这里回答这个问题,因为没有 Wordpress 的人也很可能会遇到这个问题。

于 2013-07-28T21:57:53.413 回答