Skip to content

Instantly share code, notes, and snippets.

@kachi
Created April 16, 2012 14:14
Show Gist options
  • Select an option

  • Save kachi/2399087 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2399087 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'media_send_to_editor', 'disable_a_tags_in_gallery', 999, 3 );
function disable_a_tags_in_gallery( $html ) {
return preg_replace( '/<a .*?>(.*?)<\/a>/', '$1', $html );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment