Changeset 11150 for trunk/src/bp-blogs/bp-blogs-filters.php
- Timestamp:
- 09/22/2016 12:35:27 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-filters.php
r10825 r11150 122 122 add_filter( 'bp_activity_post_pre_publish', 'bp_blogs_post_pre_publish', 10, 4 ); 123 123 add_filter( 'bp_activity_post_pre_comment', 'bp_blogs_post_pre_publish', 10, 4 ); 124 125 /** 126 * Registers our custom thumb size with WP's Site Icon feature. 127 * 128 * @since 2.7.0 129 * 130 * @param array $sizes Current array of custom site icon sizes. 131 * @return array 132 */ 133 function bp_blogs_register_custom_site_icon_size( $sizes ) { 134 $sizes[] = bp_core_avatar_thumb_width(); 135 return $sizes; 136 } 137 add_filter( 'site_icon_image_sizes', 'bp_blogs_register_custom_site_icon_size' );
Note: See TracChangeset
for help on using the changeset viewer.