jetpack_photon_skip_image
Allow specific images to be skipped by Photon.
Description
Parameters (3)
- 0. $false (bool)
- False Should Photon ignore this image. Default to false.
- 1. $src (string)
- Image URL.
- 2. $tag (string)
- Image Tag (Image HTML output).
Usage
- To run the hook, copy the example below.
- $false = apply_filters( 'jetpack_photon_skip_image', $false, $src, $tag );
- if ( !empty( $false ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the jetpack_photon_skip_image callback
- function filter_jetpack_photon_skip_image( $false, $src, $tag ) {
- // make filter magic happen here...
- return $false;
- };
- // add the filter
- add_filter( 'jetpack_photon_skip_image', 'filter_jetpack_photon_skip_image', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'jetpack_photon_skip_image', 'filter_jetpack_photon_skip_image', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /class.photon.php
- if ( apply_filters( 'jetpack_photon_skip_image', false, $src, $tag ) )