前言介紹
- 這款 WordPress 外掛「bSocial comments」是 2014-11-03 上架。
- 目前尚無安裝啟用數,是個很新的外掛。如有要安裝使用,建議多測試確保功能沒問題!
- 上一次更新是 2014-11-04,距離現在已有 3834 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.0 以上版本才可以安裝。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
camwyn | borkweb | methnen | misterbisson |
外掛標籤
flags | bSuite | bSocial | comments | featured comments |
內容簡介
這一節需要開發。
編輯所選的特色評論
添加用戶標記評論的功能
添加用戶收藏評論的功能
添加支持註冊新評論類型和狀態的功能,類似於 WP 核心的 register_post_type(),請參閱註冊自定義評論類型的部分
歷史
特色評論最初是在 bSocial (插件庫, Github) 中引入的,但現在已轉移到此處。新的 bSocial 評論功能將在此插件中開發。
在 WordPress.org 的插件庫中
最終在此處:https://wordpress.org/plugins/bsocial-comments/
複製我!
此插件在 Github 上:https://github.com/misterbisson/bsocial-comments
構建狀態
Travis-CI 上的主要構建狀態:
註冊自定義評論類型
自定義評論類型
`php
$args = array(
‘labels’ => array(
‘name’ => ‘收藏’,
‘singular_name’ => ‘收藏’,
‘edit_item’ => ‘編輯收藏’,
‘update_item’ => ‘更新收藏’,
‘view_item’ => ‘查看收藏’,
‘all_items’ => ‘所有收藏’,
),
‘description’ => ‘評論收藏’,
‘public’ => TRUE,
‘show_ui’ => TRUE,
‘admin_actions’ => array( ‘trash’, ‘untrash’, ‘delete’ ),
‘statuses’ => array(
‘feedback’,
‘trash’,
),
);
bsocial_comments()->register()->comment_type( ‘fave’, $args );
`
自定義評論狀態
`php
$args = array(
‘label’ => ‘Feedback’,
‘label_count’ => _n_noop( ‘Feedback (%s)’, ‘Feedback (%s)’ ),
‘status_links_show’ => TRUE,
‘include_in_all’ => FALSE,
);
bsocial_comments()->register()->comment_status( ‘feedback’, $args );
`
原文外掛簡介
This section needs development.
Adds featured comments selected by editors
Adds ability for users to flag comments
Adds ability for users to fave comments
Adds support for registering new comment types and statuses, similar to WP core’s register_post_type(), see the section on registering custom comment types
History
Featured comments were originally introduced in bSocial (plugin repo, github), but have moved here. New bSocial commenting features will be developed in this plugin.
In the WordPress.org plugin repo
Eventually here: https://wordpress.org/plugins/bsocial-comments/
Fork me!
This plugin is on Github: https://github.com/misterbisson/bsocial-comments
Build status
Master build status at Travis-CI:
Registering custom comment types
Custom comment types
`php
$args = array(
‘labels’ => array(
‘name’ => ‘Faves’,
‘singular_name’ => ‘Fave’,
‘edit_item’ => ‘Edit Fave’,
‘update_item’ => ‘Update Fave’,
‘view_item’ => ‘View Fave’,
‘all_items’ => ‘All Faves’,
),
‘description’ => ‘Comment faves’,
‘public’ => TRUE,
‘show_ui’ => TRUE,
‘admin_actions’ => array( ‘trash’, ‘untrash’, ‘delete’ ),
‘statuses’ => array(
‘feedback’,
‘trash’,
),
);
bsocial_comments()->register()->comment_type( ‘fave’, $args );
`
Custom comment statuses
`php
$args = array(
‘label’ => ‘Feedback’,
‘label_count’ => _n_noop( ‘Feedback (%s)’, ‘Feedback (%s)’ ),
‘status_links_show’ => TRUE,
‘include_in_all’ => FALSE,
);
bsocial_comments()->register()->comment_status( ‘feedback’, $args );
`
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「bSocial comments」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
bStat 》記錄並分析與文章相關的活動。頁面訪問、評論和點擊活動跟踪器是內置的。其他活動可以輕鬆集成和相關聯。, 依賴項(僅用於在儀錶板中查看報告):go-graphing...。
bCMS 》讓 WordPress 成為更好的內容管理系統。在 Widget 中創建文章循環。懶加載 Widget。提供更多的短碼。更加優秀。, Widget, , 文章循環使您可以創建自己的文章...。
Gigaom OpenCalais 》此外掛程式整合 OpenCalais 的標籤建議於 WordPress 編輯介面中,支援多個及自訂分類法。將OpenCalais 的實體和事實對應至 WordPress 資料分類法,包含自訂分...。
bSocial 》, 在您的網站中增加 Open Graph metadata,以便在 Facebook 和其他社交網絡中進行更好的分享。, 選擇精選評論以突出有趣的對話。, 添加 Twitter 的 JS 用於 T...。