jetpack_photon_url, $this->orig_file

jetpack_photon_url, $this->orig_file

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_photon_url, $this->orig_file') is found 1 times:

  • /modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php line 103
    		$this->orig_file = wp_get_attachment_url( $this->image->ID );
    		$this->link      = $needs_attachment_link
    			? get_attachment_link( $this->image->ID )
    			// The filter will photonize the URL if and only if Photon is active
    			: apply_filters( 'jetpack_photon_url', $this->orig_file );
    
    		$img_args = array(
    			'w' => $this->image->width,
    			'h' => $this->image->height,
    		);
    		// If h and w are the same, there's a reasonably good chance the image will need cropping to avoid being stretched.