我們並沒有加上此功能在 recent comments 上,比較簡單的方式是修改程式把 pluginrecentcomments.class.php 中的 register() 裡面的
$this->maxComments = $blogSettings->getValue( "plugin_recentcomments_maxcomments", DEFAULT_ITEMS_PER_PAGE );
改為
$hardMaxComments = 10; 你的限制
$blogMaxComments = $blogSettings->getValue( "plugin_recentcomments_maxcomments", DEFAULT_ITEMS_PER_PAGE );
if($blogMaxComments > $hardMaxComments)
$this->maxComments = $hardMaxComments;
else
$this->maxComments = $blogMaxComments;
只是這樣改, user 的設定值還是他自己的設定值。如果你想改的更漂亮,其他的部分就要自己努力,改好了歡迎在這裡分享。
Mark