Skip to content

Instantly share code, notes, and snippets.

@jackperry
Last active December 18, 2015 18:09
Show Gist options
  • Select an option

  • Save jackperry/5823780 to your computer and use it in GitHub Desktop.

Select an option

Save jackperry/5823780 to your computer and use it in GitHub Desktop.
Remove WordPress autop From Images
$("#page_whole > p > a > img").each(function(index){
if($(this).parent().parent().is("p")){
$(this).parent().unwrap();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment