mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
10 lines
180 B
PHP
10 lines
180 B
PHP
<?php
|
|
|
|
add_filter( 'bp_core_pre_avatar_handle_upload', 'blobphoto' );
|
|
function blobphoto( $bool ) {
|
|
|
|
add_filter( 'jetpack_photon_skip_image', '__return_true' );
|
|
|
|
return $bool;
|
|
}
|