WordPress中Ajax評論分頁實現方法

來源:互聯網
上載者:User

一.準備
載入 jQuery 庫,這個不解釋了。

 二.開啟 WordPress 評論分頁

開啟 WordPress 後台 – 設定 – 討論,在“其他評論設定”中勾選分頁顯示評論,設定一下評論數目,這裡的評論數目僅計算主評論,回複評論不作計算。這裡 Kayo 填了比較大的數字(15),因為評論分頁分得太細會使使用者不便於閱讀之前的評論。

 在後台開啟評論分頁後,在 comments.php 中需要添加分頁導航的地方加入以下代碼(如主題中有類似代碼則無須再添加,另外代碼中的 nav 標籤為 HTML5 標籤,若主題沒有使用 HTML5 則有 div 代替即可。

 代碼如下 複製代碼

<nav id="comments-navi">
    <?php paginate_comments_links('prev_text=«&next_text=»');?>
</nav>

三.評論分頁的 SEO

從 SEO 的角度看,評論分頁會造成重複內容(分頁的內容本文都一樣,並且 keywords 和 description 也相同),這樣對於評論很多的部落格很容易因為重複內容太多而降權,因此需要在 SEO 方面作出一些處理,最為方便有效方法是使用 meta 標籤。在你的 header.php 原有的 meta 標籤下加入以下代碼,這樣分頁的頁面便會禁止被seo/seo.html" target="_blank">搜尋引擎收錄,防止內容重複。

 代碼如下 複製代碼

<?php if( is_single() || is_page() ) {
    if( function_exists('get_query_var') ) {
        $cpage = intval(get_query_var('cpage'));
        $commentPage = intval(get_query_var('comment-page'));
    }
    if( !empty($cpage) || !empty($commentPage) ) {
        echo '<meta name="robots" content="noindex, nofollow" />';
        echo "n";
    }
}
?>

四.Ajax 評論分頁


根據上文所述,現在主題中已經有評論分頁了,要做到 Ajax 的評論分頁,只需 JavaScript 的配合,不過在這之前首先要在評論列表前加入一個元素,用於在顯示新一頁評論列表時表示列表正在載入。假設主題模板 comments.php 的評論模組結構如下:

 代碼如下 複製代碼

<div class="comments">
    <h3 id="comments-list-title">Comments</h3>
    <!-- 顯示正在載入新評論 -->
    <div id="loading-comments"><span>Loading...</span></div>
    <!-- 評論列表 -->
    <ol class="comment_list">        
        <li>...</li>
        <li>...</li>
        <li>...</li>
    </ol>
    <!-- 評論分頁導航 -->
    <nav id="comments-navi">
        <a class="prev page-numbers" href="#">1</a>
        ...
    </nav>
</div>

在你的 js 檔案中加入以下 js 代碼實現評論分頁

 代碼如下 複製代碼

// 評論分頁
$body=(window.opera)?(document.compatMode=="CSS1Compat"?$('html'):$('body')):$('html,body');
// 點擊分頁導航連結時觸發分頁
$('#comments-navi a').live('click', function(e){
    e.preventDefault();
    $.ajax({
        type: "GET",
        url: $(this).attr('href'),
        beforeSend: function(){
            $('#comments-navi').remove();
            $('.comment_list').remove();
            $('#loading-comments').slideDown();
            $body.animate({scrollTop: $('#comments-list-title').offset().top - 65}, 800 );
        },
        dataType: "html",
        success: function(out){
            result = $(out).find('.comment_list');
            nextlink = $(out).find('#comments-navi');
            $('#loading-comments').slideUp('fast');
            $('#loading-comments').after(result.fadeIn(500));
            $('.comment_list').after(nextlink);
        }
    });
});

載入條的 css (僅供參考)

 代碼如下 複製代碼

#loading-comments {display: none; width: 100%; height: 45px; background: #a0d536; text-align: center; color: #fff; font-size: 22px; line-height: 45px; }


如果大家覺得這個很麻煩我們可使用分頁外掛程式AJAX Comment Pager來執行個體

AJAX Comment Pager外掛程式介紹:
AJAX Comment Pager外掛程式的評論分頁功能增加 AJAX 處理功能,它不依賴任何 JavaScript 架構,若您要使用該才外掛程式, 請確保滿足以下條件:

1.您正在使用 WordPress 2.7 或以上版本. (包括 beta 測試版)
2.您正在使用的主題定義了自訂的評論顯示方法. (基本上支援嵌套回複的都會定義該方法)
AJAX Comment Pager外掛程式安裝:

1.下載AJAX Comment Pager外掛程式,將壓縮包解壓到 "/wp-content/plugins/" 目錄中.
2.到 WordPress 背景 "Plugins" 頁面啟用該外掛程式.
3.到 WordPress 背景 "Settings -> AJAX Comment Pager" 頁面, 輸入相關資訊和儲存設定,如下圖:

4.在 "comments.php" 檔案中將 "<span id="cp_post_id"><?php echo $post->ID; ?></span>" 追加到 "<?php paginate_comments_links(); ?>" 的後面.
如果主題目錄下存在命名為 "ajax-comment-pager.css" 的檔案, 外掛程式會它將作為樣式檔案載入到頁面, 如果該檔案不存在, 主題會將外掛程式內建的作為預設的樣式檔案, 並載入到頁面。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.