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.

What do I need to provide for my website design?

By Dave Fogel | September 3, 2020

We typically ask you for a few examples of websites you like so we can create a mock-up for you to review. You will also need to provide us with the content for the website; in other words, what goes on the pages. This has proven in the past to be the longest hold up…

How long does it take to build a website?

By Dave Fogel | September 3, 2020

For a relatively small website – 10 pages or less, we can usually have your website completed in about a month. Larger websites may take longer, and we will quote as best we can when we see your project.

Do you outsource to India or other countries?

By Dave Fogel | September 3, 2020

Absolutely, 100% No! You can be sure everything about your website will be done here in the USA. The reason for that is simple; we care about the quality of our work and the satisfaction of our customers. Truth be told, we can make a lot more money changing US prices and outsourcing, but the…

Posted in

Dave Fogel

Leave a Comment