Advertisement
Guest User

Untitled

a guest
Feb 20th, 2013
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. // hacks and mods will go here
  3.  
  4. function activity_publish_custom_post_types($cpts) {
  5.    $cpts[] = 'page';
  6.    return $cpts;
  7. }
  8. add_filter ( 'bp_blogs_record_post_post_types', 'activity_publish_custom_post_types' );
  9. add_filter ( 'bp_blogs_record_comment_post_types', 'activity_publish_custom_post_types' );
  10.  
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement