這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Recent Comments

描述

Creates functions to assist in displaying a list of the most recent comments. Provides more configurability than the widget that comes with WordPress.

Configuration

You may pass parameters when calling the function to configure some of the options. Parameters are accepted only in the query-string-style.

list_most_recent_comments()

In addition to the parameters that get_comments() and get_most_recent_comments() (see below) accept, this function accepts the following parameters:

  • excerpt_words — The number of words from the comment to display
  • excerpt_chars — Or alternately the number of characters from the comment to display
  • comment_format — Allows you to pick from two predefined display formats:
  1. Comment Author on Post Title
  2. Comment Author: This is the comment excerpt

Example:

<?php list_most_recent_comments( 'excerpt_words=5' ); ?>

get_most_recent_comments()

A more powerful version of get_comments(). It accepts the same parameters as well as the following ones:

  • passworded_posts — Boolean to control showing comments on passworded posts or not. Defaults to false.
  • showpings — Boolean to control showing pings and trackbacks or not. Defaults to false.
  • post_types — Array of post types to include comments from. Defaults to posts and pages: array( 'post', 'page' )
  • post_statuses — Array of post statuses to include comments from. Defaults to published posts and static pages: array( 'publish', 'static' )

Arguments should likely be passed as an array instead of a string.

Example:

<?php

list_most_recent_comments( array(
    'showpings' => true,
    'post_types' => array( 'post', 'page', 'foobar' ),
) );

?>

安裝

  1. Visit Plugins -> Add New in your WordPress administration area and search for the name of this plugin.
  2. Activate the plugin.
  3. Add <?php list_most_recent_comments(); ?> to your theme.

評價

There are no reviews for this plugin.

貢獻者及開發者

“Recent Comments” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 Recent Comments 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

Version 2.0.0

  • Recoded from scratch to make use of get_comments() instead of a direct database query.
  • Additional parameters added.

Version 1.0.0

  • Original release