Skip to content

Instantly share code, notes, and snippets.

@luclemo
Last active June 3, 2016 12:37
Show Gist options
  • Save luclemo/540da53c19f77c01cd55 to your computer and use it in GitHub Desktop.
Save luclemo/540da53c19f77c01cd55 to your computer and use it in GitHub Desktop.
Image Functions #wordpress
<?php
// function to remove <p> tags on images
add_filter('the_content', 'filter_ptags_on_images');
function filter_ptags_on_images($content){
return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
}
// function to set default image link to none
update_option('image_default_link_type','none');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment