
前言介紹
- 這款 WordPress 外掛「Show Pending Comments Count」是 2009-06-11 上架。
- 目前有 10 個安裝啟用數。
- 上一次更新是 2015-08-08,距離現在已有 3855 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 2.6 以上版本才可以安裝。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
admin | comments | edit posts | coffee2code | pending comments |
內容簡介
注意:此外掛自 WordPress 4.3 版本開始已被棄用,因為 WordPress 現在已經能夠以比此外掛更美觀的方式顯示待審核評論的數量,所以如果您使用的是 WP 4.3 或更新版本,就不需要使用此外掛了。實際上,如果您嘗試使用它,它將對您沒有任何作用。該外掛在 WP 4.2 及更早版本中仍然完全可用。
預設情況下,在文章的管理清單中,每篇文章都會在一個氣泡中顯示其已核准評論的數量。如果您將滑鼠懸停在評論數量上,工具提示懸停文字會顯示待審核評論的數量。此外掛利用 JavaScript 更改文章清單,以便在同一個評論氣泡內(儘管以分隔符區分)顯示待審核評論數量和已核准評論數量。
待審核評論數將顯示為以下文章評論數量中:
文章列表(曾經稱為“編輯文章”)
頁面列表(曾經稱為“編輯頁面”)
評論列表(曾經稱為“編輯評論”)
此外掛僅適用於開啟 JavaScript 且在管理員中的用戶。
連結: 外掛主頁 | 外掛目錄頁 | 作者主頁
篩選功能
此外掛可透過兩個篩選器進一步自訂。通常,這些自訂將放置到您的活躍佈景主題的 functions.php 文件中,或被其他外掛使用。
c2c_show_pending_comments_count_column_width
“c2c_show_pending_comments_count_column_width” 篩選器允許您自訂顯示待審核評論時評論欄位使用的列寬。 WP 的默認值為“4em”,這不足以顯示可能的 3 位數的已批准評論,以及可能的 2 位數的待審核評論。此外掛定義的默認值是“5em”,大多數情況下足夠處理。如果您想更改寬度,請使用此過濾器。
引數:
$comment_column_width (string):評論欄位的寬度。默認值為“5em”。請按 CSS 認識的寬度進行表達。
例子:
<?php
//讓它更寬
function my_c2c_show_pending_comments_count_column_width( $comment_column_width ) {
return '6em';
}
add_filter( 'c2c_show_pending_comments_count_column_width', 'my_c2c_show_pending_comments_count_column_width' );
?>
c2c_show_pending_comments_count_separator
“c2c_show_pending_comments_count_separator” 篩選器允許您指定用作已核准評論數量和待審核評論數量之間分隔符的字符。默認情況下,這是“•”(一個圓點,兩邊有空格)。
引數:
$separator (string):用作分隔符的字符或字符串。默認情況下,這是' • '(注意兩邊的空格)。
原文外掛簡介
NOTE: This plugin is deprecated as of WordPress 4.3, which now includes a display of the count of pending comments alongside the regular count of comments. And it does so in a more aesthetically pleasing fashion than this plugin ever did, so if you are using WP 4.3 or later, there’s no need to use this plugin. In fact, it won’t do anything for you if you try to use it. The plugin is still fully functional for WP 4.2 and earlier.
By default, in the admin listing of posts, each post has its count of approved comments displayed within a word bubble. If you hover over a comment count, the tooltip hover text indicates the number of pending comments. This plugin utilizes JavaScript to change the post listings so that the pending comments count is displayed next to the approved comments count inside the same word bubble (though with a separator).
The pending comments count will appear next to post comment counts in:
The “Posts” listing of posts (formerly called “Edit Posts”)
The “Pages” listing of pages (formerly called “Edit Pages”)
The “Comments” listing of comments (formerly called “Edit Comments”)
This plugin will only function for users in the admin who have JavaScript enabled.
Links: Plugin Homepage | Plugin Directory Page | Author Homepage
Filters
The plugin is further customizable via two filters. Typically, these customizations would be put into your active theme’s functions.php file, or used by another plugin.
c2c_show_pending_comments_count_column_width
The ‘c2c_show_pending_comments_count_column_width’ filter allows you to customize the column width used for the comment column when pending comments are also being displayed. The WP default is “4em”, which is not sufficient to display a possible 3 digits for approved comments in addition to a possible 2 digits in pending comments. The default defined by the plugin is “5em” which should handle most cases sufficiently. Use the filter if you want to change the width.
Arguments:
$comment_column_width (string): The width of the comment column. Default is “5em”. Express as a width measurement recognized by CSS.
Example:
c2c_show_pending_comments_count_separator
The ‘c2c_show_pending_comments_count_separator’ filter allows you to specify the character used as the separator between the count of approved comments and the count of pending comments. By default this is ‘ • ‘ (a bullet, with space on either side).
Arguments:
$separator (string): The character or string to be used as the separator. By default this is ‘ • ‘ (note space of either side).
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Show Pending Comments Count」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0 | 1.1 | 1.2 | 1.3 | 1.0.1 | 1.2.1 | 1.2.2 | 1.2.3 | 1.2.4 | 1.2.5 | 1.2.6 | 1.2.7 | trunk |
延伸相關外掛(你可能也想知道)
Akismet Anti-spam: Spam Protection 》Akismet會檢查您的評論和聯繫表單提交,將它們與全球垃圾郵件數據庫進行比對,以防止站點發佈惡意內容。您可以在部落格的“評論”管理畫面中檢查評論垃圾郵件的...。
Antispam Bee 》用 Antispam Bee 保障你的 WordPress 博客或網站免受評論垃圾郵件的困擾。這個外掛可以有效地阻止垃圾評論和引用,不需要驗證碼,也不會將個人信息發送給第三...。
Spam protection, Honeypot, Anti-Spam by CleanTalk 》Forms spam filter, Plugin extends spam protection for Gravity Forms. It filters spam submissions for each form created with Gravity Forms., MemberP...。
Disable Comments 》Disable Comments Plugin 是一個供管理員完全關閉網站評論功能的工具。我們的外掛程式可以全域性地關閉所有文章、頁面和附件的評論功能,移除所有相關的功能...。
Comments – wpDiscuz 》wpDiscuz是一個具有自訂評論表單和欄位的AJAX即時評論系統,旨在加強WordPress原生評論功能。速度超快且具有數十種功能,是Disqus和Jetpack Comments的最佳替...。
Gravatar Enhanced – Avatars, Profiles, and Privacy 》Gravatar Enhanced為您的網站增加了一些很酷的功能:, , 復古風格(生成的)Gravatar, 啟用Hovercards, 向在您的網站上評論但沒有Gravatar的人發送定制的Gravat...。Disqus Comment System 》Disqus 是網路上最受歡迎的評論系統,被數百萬的出版商信任,以增加讀者參與度、成長觀眾及流量、以及賺取內容。Disqus 協助各種尺寸的出版商直接與其觀眾互...。
Throws SPAM Away 》這個外掛的開發旨在打擊海外的評論垃圾郵件,目前以下的篩選器被用來判定垃圾郵件。, ・日語篩選(是否包含日語), 只有留言中包含日語字符才能被發布,沒...。
Subscribe to Comments 》Subscribe to Comments是一個強大的 WordPress 外掛,讓留言者可以訂閱文章回覆的電子郵件通知。此外掛還包括一個完整的訂閱管理工具,使留言者可以取消訂閱...。
Cookies for Comments 》這個外掛將會在你的部落格 HTML 的原始碼中新增一個樣式表或圖片。當瀏覽器讀取該樣式表或圖片時,會放置一個 Cookie。如果有使用者在這之後留下評論,該 Coo...。
Disable Comments 》此外掛完全禁用網站前端和後端的評論功能:, * 隱藏現有評論, * 在前端關閉評論, * 禁用評論、引用通告和Ping的支援, * 重新導向任何試圖訪問評論頁面的使用...。
Native PHP Sessions 》 , WordPress 核心不使用 PHP sessions,但有時您的使用案例、外掛或佈景主題可能需要使用它們。, 此外掛實現了 PHP 的原生 session handlers,後台由 WordPr...。
Subscribe To Comments Reloaded 》Subscribe to Comments Reloaded 是一個功能強大的外掛,讓留言者可以訂閱後續評論的電子郵件通知。此外掛還包括一個完整的訂閱管理器,讓留言者可以取消訂閱...。Post-Plugin Library 》Post-Plugin Library 是一個共享代碼庫,並沒有獨立的功能,必須安裝它才能為 Similar Posts、Recent Posts、Random Posts、Popular Posts 和 Recent Comment...。
One Click Close Comments 》使用者可以從文章管理頁面(‘編輯文章’)及頁面管理頁面(‘編輯頁面’)中,對於他們有足夠權限進行更改的文章關閉或開啟評論(基本上是管...。
