
內容簡介
一個評論 Walker 類別,使用 Bootstrap Media Object 的標記/類別建立本地 WordPress 評論列表。參見:http://getbootstrap.com/components/#media
如需支援和官方文件,請前往外掛的主頁:http://darrinb.com/plugins/wp-bootstrap-comments
使用方法
在你的 comments.php 模板中的 wp_list_comments() 中添加對 WP_Bootstrap_Comments_Walker() 類別的呼叫。
<?php
wp_list_comments( array(
'style' => 'div',
'short_ping' => true,
'avatar_size' => 42,
'walker' => new WP_Bootstrap_Comments_Walker(),
) );
?>
若要使用 Bootstrap 原生的媒體列表樣式,將 <ol class="comment-list"> 改為 <ul class="media-list">。
<ul class="media-list">
<?php
wp_list_comments( array(
'style' => 'ul',
'short_ping' => true,
'avatar_size' => 42,
'walker' => new WP_Bootstrap_Comments_Walker(),
) );
?>
</ul><!-- .media-list -->
外掛標籤
開發者團隊
原文外掛簡介
A comment Walker class that creates native WordPress comment lists using Bootstrap Media Object markup/classes. See: http://getbootstrap.com/components/#media
For support and official documentation see the plugin’s home page here: http://darrinb.com/plugins/wp-bootstrap-comments
Usage
Add a call to the WP_Bootstrap_Comments_Walker() class in wp_list_comments() in your comments.php template.
'div',
'short_ping' => true,
'avatar_size' => 42,
'walker' => new WP_Bootstrap_Comments_Walker(),
) );
?>
To use Bootstrap’s native media list styling change

.
Akismet Anti-spam: Spam ProtectionAkismet Anti-spam 是一款最佳的防垃圾郵件保護外掛,能有效...
Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]Disable Comments 外掛可讓使用者在 WordPress 網站上全面管...
Antispam BeeAntispam Bee 是一款有效阻擋 WordPress 網站評論垃圾訊息的...
Gravatar Enhanced – Avatars, Profiles, and PrivacyGravatar Enhanced 是一款提升 WordPress 網站的外掛,簡化數...
Disable CommentsDisable Comments Plugin 是一個供管理員完全關閉網站評論功...
Disqus Comment SystemDisqus 是網路上最受歡迎的評論系統,被數百萬的出版商信任,...
Native PHP Sessions WordPress 核心不使用 PHP sessions,但有時您的使用案例、...
Throws SPAM AwayThrows SPAM Away 外掛專為防止評論垃圾郵件而設計,特別針對...
Subscribe To Comments ReloadedSubscribe to Comments Reloaded 是一個功能強大的外掛,讓留...
Subscribe to CommentsSubscribe to Comments是一個強大的 WordPress 外掛,讓留言...
Post-Plugin LibraryPost-Plugin Library 是一個共享代碼庫,並沒有獨立的功能,...
One Click Close Comments使用者可以從文章管理頁面(‘編輯文章’)及頁面管...
No Page Comment直到最近,WordPress 提供兩種選擇:你可以默認禁用所有頁面...
WP Social Comments WP Social(Facebook) Comments WP Social (Faceb...
Delete Pending Comments此外掛可以快速刪除所有待審核和垃圾評論,對於受到垃圾評論...
'ul',
'short_ping' => true,
'avatar_size' => 42,
'walker' => new WP_Bootstrap_Comments_Walker(),
) );
?>
延伸相關外掛