Açıklama
- 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 );
`
Yükleme
- Place the plugin folder in your
wp-content/plugins/directory and activate it. - Use the default options, or filter
go_configto return the options you want (when the second arg =bsocial-comments). - Have fun, feature some comments!
İncelemeler
Bu eklenti için herhangi bir değerlendirme bulunmuyor.
Katkıda Bulunanlar ve Geliştiriciler
“bSocial comments” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye katkıda bulunmuşlardır.
Katkıda bulunanlar“bSocial comments” eklentisini dilinize çevirin.
Geliştirmeyle ilgilenir misiniz?
Kodu görüntüleyin, SVN deposuna göz atın ya da RSS ile geliştirme günlüğüne abone olun.