Skip to content

Instantly share code, notes, and snippets.

@flabernardez
Created April 3, 2021 21:08
Show Gist options
  • Save flabernardez/75b755d0b5a8f420cad9c1fda90ab20e to your computer and use it in GitHub Desktop.
Save flabernardez/75b755d0b5a8f420cad9c1fda90ab20e to your computer and use it in GitHub Desktop.
#css #wordpress remove inline styles in wp content
add_filter('the_content', function( $content ){
//--Remove all inline styles--
$content = preg_replace('/ style=("|\')(.*?)("|\')/','',$content);
return $content;
}, 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment