
內容簡介
一個評論 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會檢查您的評論和聯繫表單提交,將它們與全球垃圾郵件...
Antispam Bee用 Antispam Bee 保障你的 WordPress 博客或網站免受評論垃圾...
Spam protection, Honeypot, Anti-Spam by CleanTalkCleanTalk 是一款雲端反垃圾訊息外掛,無需 CAPTCHA 即可全面...
Disable CommentsDisable Comments Plugin 是一個供管理員完全關閉網站評論功...
Gravatar Enhanced – Avatars, Profiles, and PrivacyGravatar Enhanced 是一款提升 WordPress 網站的外掛,簡化數...
Comments – wpDiscuzwpDiscuz 是一款強大的 AJAX 實時評論系統,旨在提升 WordPre...
Disqus Comment SystemDisqus 是網路上最受歡迎的評論系統,被數百萬的出版商信任,...
Throws SPAM Away這個外掛的開發旨在打擊海外的評論垃圾郵件,目前以下的篩選...
Subscribe to CommentsSubscribe to Comments是一個強大的 WordPress 外掛,讓留言...
Cookies for Comments這個外掛將會在你的部落格 HTML 的原始碼中新增一個樣式表或...
Disable Comments此外掛完全禁用網站前端和後端的評論功能: * 隱藏現有評論 *...
Native PHP Sessions WordPress 核心不使用 PHP sessions,但有時您的使用案例、...
Subscribe To Comments ReloadedSubscribe to Comments Reloaded 是一個功能強大的外掛,讓留...
Post-Plugin LibraryPost-Plugin Library 是一個共享代碼庫,並沒有獨立的功能,...
One Click Close Comments使用者可以從文章管理頁面(‘編輯文章’)及頁面管...
'ul',
'short_ping' => true,
'avatar_size' => 42,
'walker' => new WP_Bootstrap_Comments_Walker(),
) );
?>
延伸相關外掛