Skip to content

Instantly share code, notes, and snippets.

@joehoyle
Created August 9, 2013 15:40
Show Gist options
  • Save joehoyle/6194643 to your computer and use it in GitHub Desktop.
Save joehoyle/6194643 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wpthumb_post_image_path', function() {
return WP_CONTENT_DIR . '/uploads/' . rand( 0, 2 ) . '.jpg';
});
add_filter( 'get_attached_file', function( $path ) {
return WP_CONTENT_DIR . '/uploads/' . rand( 0, 2 ) . '.jpg';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment