kollapsminoriteten/wp-content/plugins/jetpack/3rd-party/buddypress.php

24 lines
503 B
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<?php
2021-04-27 08:32:47 +02:00
/**
* 3rd Party Integration for BuddyPress.
*
* @package automattic/jetpack.
*/
2019-11-15 23:26:29 +01:00
2021-04-27 08:32:47 +02:00
namespace Automattic\Jetpack\Third_Party;
add_filter( 'bp_core_pre_avatar_handle_upload', __NAMESPACE__ . '\blobphoto' );
2019-11-15 23:26:29 +01:00
2021-04-27 08:32:47 +02:00
/**
* Adds filters for skipping photon during pre_avatar_handle_upload.
*
* @param bool $bool Passthrough of filter's original content. No changes made.
*
* @return bool
*/
function blobphoto( $bool ) {
2019-11-15 23:26:29 +01:00
add_filter( 'jetpack_photon_skip_image', '__return_true' );
return $bool;
}