Advertisement
Guest User

BGMP avoid photon icon resizing

a guest
Dec 17th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. function remove_photon_downsize( $query ) {
  2.   remove_filter( 'image_downsize', array( Jetpack_Photon::instance(), 'filter_image_downsize' ) );
  3.  
  4.   return $query;
  5. }
  6. add_filter( 'bgmp_get-map-placemarks-query', 'remove_photon_downsize' );
  7.  
  8. function add_photon_downsize( $placemarks ) {
  9.   add_filter( 'image_downsize', array( Jetpack_Photon::instance(), 'filter_image_downsize' ), 10, 3 );
  10.  
  11.   return $placemarks;
  12. }
  13. add_filter( 'bgmp_get-map-placemarks-return', 'add_photon_downsize' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement