Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /**
  2. * Set Content for Sale by Author
  3. * @mycred
  4. * @version 1.0
  5. */
  6. add_filter( 'mycred_post_is_for_sale', 'mycredpro_set_for_sale_by_author', 10, 2 );
  7. function mycredpro_set_for_sale_by_author( $result, $post ) {
  8.  
  9. if ( $post->post_author == 123 )
  10. return true;
  11.  
  12. return $result;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement