Skip to content

Instantly share code, notes, and snippets.

@richterd
Created September 1, 2015 13:26
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 richterd/7a8b1a11d0ca9ff7c06c to your computer and use it in GitHub Desktop.
Save richterd/7a8b1a11d0ca9ff7c06c to your computer and use it in GitHub Desktop.
Wordpress open Media Image in new window/tab as default
/**
* Always set target to _blank
**/
add_filter('image_send_to_editor', 'custom_image_send_to_editor', 10, 8);
function custom_image_send_to_editor($html, $id, $caption, $title, $align, $url, $size, $alt){
$html = preg_replace("/<a/", '<a target="_blank"', $html);
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment