Changeset 11794
- Timestamp:
- 01/05/2018 12:17:35 PM (7 years ago)
- Location:
- trunk/src/bp-blogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-activity.php
r11788 r11794 65 65 * @param array $value Array of post types to track. 66 66 */ 67 $post_types = apply_filters( 'bp_blogs_record_post_post_types', array( 'p ost' ) );67 $post_types = apply_filters( 'bp_blogs_record_post_post_types', array( 'page', 'post' ) ); 68 68 $post_types_array = array_flip( $post_types ); 69 69 … … 96 96 * @param array $value Array of post types to track. 97 97 */ 98 $comment_post_types = apply_filters( 'bp_blogs_record_comment_post_types', array( 'p ost' ) );98 $comment_post_types = apply_filters( 'bp_blogs_record_comment_post_types', array( 'page', 'post' ) ); 99 99 $comment_post_types_array = array_flip( $comment_post_types ); 100 100 -
trunk/src/bp-blogs/classes/class-bp-blogs-component.php
r11360 r11794 106 106 * @param array $value Array of post types to track. 107 107 */ 108 $post_types = apply_filters( 'bp_blogs_record_post_post_types', array( 'p ost' ) );108 $post_types = apply_filters( 'bp_blogs_record_post_post_types', array( 'page', 'post' ) ); 109 109 110 110 foreach ( $post_types as $post_type ) {
Note: See TracChangeset
for help on using the changeset viewer.