Skip to content

Instantly share code, notes, and snippets.

@gabrielmerovingi
gabrielmerovingi / mycred-comment-popularity-hook
Created August 21, 2014 09:24
Custom hook that allows you to reward your comment authors for getting their comments voted up or down by fellow member using the Comment Popularity plugin. Simply copy the code and paste it into your theme's functions.php file and you can access the new hook on the myCRED > Hooks page. Supports multiple point types and requires myCRED 1.4 or hi…
/**
* Register Custom Hook
* Comment Popularity
* @see https://github.com/humanmade/comment-popularity
*/
add_filter( 'mycred_setup_hooks', 'mycred_pro_register_comment_pop_hook' );
function mycred_pro_register_comment_pop_hook( $installed ) {
$installed['comment_pop'] = array(
'title' => __( 'Comment Popularity', 'textdomain' ),