Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. add_action( 'bp_ready', 'custom_buddyboss_media_disable_akismet' );
  2.  
  3. /**
  4. * Disable Akismet.
  5. * BuddyBoss Media plugin add photo links in activity content and because of that Akismet plugin
  6. * mark activity 'spam'.
  7. * the Following function will disable the use of Akismet while posting media.
  8. */
  9. function custom_buddyboss_media_disable_akismet() {
  10. if ( isset( $_POST['pics_uploaded'] ) && ! empty( $_POST['pics_uploaded'] ) ) {
  11. add_filter( 'bp_activity_use_akismet', '__return_false' );
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement