How to remove inline CSS from post together in WordPress (WP)?

How to remove inline CSS from post together in WordPress (WP)?

By Prof. Fazal Rehman Shamil
Last modified on October 5th, 2019

How to remove inline CSS from post together in WordPress (WP)?

Sometimes, we need to use inline CSS in our website pages. But in some cases, we need to remove inline CSS from all posts. In such cases, we need to change the CSS one by one in each post.

How to remove inline CSS from post together in WordPress (WP)

Code of removing inline CSS from WP Pages

PHP

12345 add_filter(‚the_content‘, function( $content ){    //–Remove all inline styles by fazal rehman shamil–    $content = preg_replace(‚/ style=(„|\‘)(.*?)(„|\‘)/‘,“,$content);    return $content;}, 20);

You can insert this code in functions.php file.