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 about free websites?
There are a few options out there to design your website for free. Companies like WIX come to mind. Keep in mind that with WIX you never own your website. You are stuck with them forever. It still takes a lot of time to design a site, and if you are not a designer, chances…
How much does it cost for a website?
Great question! We hear it all the time. Websites can range from $500 to $100,000K+. It all depends on your needs. For us, websites typically range from $1,500 and up. That might sound like a lot, but if you look at some of our competition in Jacksonville, we think you will find it very competitive.…
4 Reasons You Should Own Your Own Domain
If someone is starting a new website, or even looking to create a second website, one of the most popular requests we get is to help them register their domain. Of course we can do this for you, but is it a good idea? We think not and here is why. 1. Your domain name…