Advertisement
vapvarun

Disable BuddyPress Activity Posting

Apr 28th, 2021
1,381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function vap_disable_activity_posting() {
  2. add_filter( 'bp_get_template_part', 'vap_disable_activity_posting_filter', 10, 3 );
  3.  
  4. }
  5. add_action('bp_init', 'vap_disable_activity_posting');
  6.  
  7. function vap_disable_activity_posting_filter( $templates, $slug, $name ) {
  8.  
  9. if( 'activity/post-form' != $slug )
  10.             return $templates;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement