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.

Google Adds Countdown Widget

By Dave Fogel | December 16, 2014

Google just announced  a new countdown widget that makes it easy for advertisers to place countdown times within their ad copy dynamically. With a countdown widget, you can create a sense of urgency for customers to buy what you have now versus later. This includes the ability to set the following messaging in your ad…

Penguin Continues To Roll Out

By Dave Fogel | December 11, 2014

Typically when Google launches a new algorithm update, it is over pretty fast and everyone is scrambling to figure out what to do next. This certainly has not been the case with Google Penguin 3. We’ve been seeing a lot of activity around sites impacted by Google’s Penguin algorithm over the past few weeks. When…

Google Launches Adwords Editor 11

By Dave Fogel | December 11, 2014

Yesterday Google announced the latest version of Adwords editor, now version 11. This version has been completely re-written, which is a good thing because the old version felt like it was done for windows 95. For those of you not familiar with adwords editior, it is a faster way manage your adwords account than simply…

Posted in

Dave Fogel

Leave a Comment