Advertisement
designbymerovingi

Manual badge reference

Jan 25th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. /**
  2.  * Manual Badge Reference
  3.  * @version 1.0
  4.  */
  5. add_filter( 'mycred_all_references', 'mycred_pro_manual_badge' );
  6. function mycred_pro_manual_badge( $references ) {
  7.  
  8.     $references['disabled_feature'] = 'Badge is manually awarded';
  9.     return $references;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement