Skip to content

Instantly share code, notes, and snippets.

@syamilmj
Created November 1, 2012 12:57
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 syamilmj/3993470 to your computer and use it in GitHub Desktop.
Save syamilmj/3993470 to your computer and use it in GitHub Desktop.
replace attachment with dummy image
function dummy_wp_get_attachment_url( $url, $post_id ){
return 'http://dummy/image/URL';
}
add_filter( 'wp_get_attachment_url' , 'dummy_wp_get_attachment_url' , 10 , 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment