Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created October 7, 2016 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/cc42517b5edf61e40664c677e7c17e34 to your computer and use it in GitHub Desktop.
Save mgibbs189/cc42517b5edf61e40664c677e7c17e34 to your computer and use it in GitHub Desktop.
Override asset URLs
<?php
add_filter( 'facetwp_assets', function( $assets ) {
foreach ( $assets as $key => $url ) {
$assets[ $key ] = s3_url_for( $url );
}
return $assets;
}, 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment