summaryrefslogtreecommitdiff
blob: 9ae35f3cbd6cb47388db71344ece72d48fe031b3 (plain)
1
2
3
4
5
6
7
8
9
<?php

add_filter( 'bp_core_pre_avatar_handle_upload', 'blobphoto' );
function blobphoto( $bool ) {

	add_filter( 'jetpack_photon_skip_image', '__return_true' );

	return $bool;
}