Advertisement
designbymerovingi

Disable myCRED Shortcodes

Mar 16th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /**
  2.  * Disable myCRED Shortcodes
  3.  * @version 1.0
  4.  */
  5. add_action( 'mycred_init', 'mycredpro_disable_mycred_shortcodes', 999 );
  6. function mycredpro_replace_link_click_shortcode() {
  7.  
  8.     if ( current_user_can( 'manage_options' ) ) return;
  9.  
  10.     remove_shortcode( 'mycred_link' );
  11.     remove_shortcode( 'mycred_give' );
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement