Advertisement
designbymerovingi

Move Sell Content add-on hook

Feb 9th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. /**
  2.  * Movie Sell Content Filter
  3.  * @version 1.0
  4.  */
  5. function mycred_pro_movie_sell_content_filter() {
  6.  
  7.     global $mycred_modules;
  8.  
  9.     if ( ! array_key_exists( 'content', $mycred_modules['solo'] ) ) return;
  10.  
  11.     remove_filter( 'the_content', array( $mycred_modules['solo']['content'], 'the_content' ), 5 );
  12.     add_filter( 'the_content', array( $mycred_modules['solo']['content'], 'the_content' ), 999 );
  13.  
  14. }
  15. add_action( 'mycred_init', 'mycred_pro_movie_sell_content_filter', 999 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement