jetpack_activitypub_post_disable_cdn

jetpack_activitypub_post_disable_cdn

Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.5

apply_filters('jetpack_activitypub_post_disable_cdn') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-image-cdn/src/compatibility/activitypub.php line 30
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
             * @since 0.2.2
             *
             * @param bool $should_disable_photon Should the CDN be disabled for that request. Default to false.
             */
            apply_filters( 'jetpack_activitypub_post_disable_cdn', false )
        ) {
            add_action( 'activitypub_get_image_pre', __NAMESPACE__ . '\disable_photon' );
            add_action( 'activitypub_get_image_post', __NAMESPACE__ . '\enable_photon' );
        }
    }
    add_action( 'plugins_loaded', __NAMESPACE__ . '\load_activitypub_compat' );