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 Penguin update. Making Google Worse than Ever.

By Dave Fogel | April 27, 2012

Google has released a new update and this time its called Penguin. The days of Panda are over and SEO’s all over the world are very unhappy. Penguin seems to have gone too far making search results less relevant than ever. Goolge says these updates are aimed at cleaning up the spammy results from the…

Penality for ‘Over-Optimized’ websites

By Dave Fogel | April 11, 2012

On the SWSX event in America, Google’s Spam team member Matt Cutt’s announced about the new changes in Google search results coming in Weeks/months designed to penalize the Over – Optimized Sites. This announcements give shock to the techies & SEO professional. After Spreading this news over the Web the response by the Matt cutt’s…

Google Panda 3.4

By Dave Fogel | April 11, 2012

Google recently used Twitter to officially announce the release of the latest update to its ranking algorithm, Panda 3.4. This update rolled out on March 24 andis targeting low-quality websites. The update was specifically a refresh to Panda 3.3, so it seems no new signals or algorithm changes were made. What this means is that…

Posted in

Dave Fogel

Leave a Comment