Disable WordPress Auto Formatting

Sometimes WordPress can be extremely annoying with the Auto Formatting. Often it will add a

or a
where you don’t want one and it will totally mess up the look of your page. Do how do we fix this?

There are a couple of options.

1. You can get a plug-in to disable the auto formatting completely. Such as this one. PS Disable Auto Formatting. The downside to this plug in is that it kills the auto formatting fro your entire site, which might mess up a lot of page you have already finished with

2. Another option — and a better option — is to create a custom field that will allow you to disable the auto formatting only on the pages you want to disable it.

I learned this trick here

So in this method we edit our functions.php to include the following:

function WP_auto_formatting($content) {
    global $post;
    if(get_post_meta($post->ID, 'disable_auto_formatting', true) == 1) {
        remove_filter('the_content', 'wpautop');
    }
    return $content;
}
add_filter( "the_content", "WP_auto_formatting", 1 );

Now we are able to set a custom field of “disable_auto_formatting” and give it a value of 1. This will disable the auto formatting on that page only.

Very sweet. WP 3.21 compatible.

How much do website updates cost?

By Dave Fogel | September 3, 2020

If you already have a website and want updates done, or new pages added, we charge $75 per hour. Unlike other companies in Jacksonville and St. Augustine that bill you for an hour with a small update, we charge in 15-minute increments saving you money. We will always provide you with an estimate of how…

Where do I get images for my website?

By Dave Fogel | September 3, 2020

We highly recommend taking your own images for your website. Almost any modern phone can take great pictures. We can edit them and make them pop for you. Having your own images makes your website feel more genuine and gives customers a better idea of your company. Most customers can spot a stock photo from…

Can you create copy / content for our website?

By Dave Fogel | September 3, 2020

Absolutely! Our copywriter Blair does excellent work and has been creating compelling copy for our clients for years. His content is also SEO focused, helping you rank better in search engines. Blair has done content on pretty much any subject you out there. We also create copy for blog posts to help keep your websites…

Posted in

Dave Fogel

Leave a Comment