I posted a few days ago about how to prevent wordpress from inserting <br \> and made a note that I would have to do a bit more research to figure out how to disable the <p>’s . Well a bit more research later I’ve found the solution to getting rid of all the bloody tags that WP throws in there.
What you need to do is to go into your wp-content/plugins directory and either create a new directory and copy the following into a .php file or simply put this into a file into the plugins directory:
<?php
/* Plugin Name: WP Unformat
* Plugin URI: http://wpvibe.com
* Author: Jonathan Dingman
* Author URI: http://jonathan.vc
* Version: 1.0
* Description: Disables the <p> that is automatically inserted by WordPress
*/remove_filter(‘the_content’, ‘wpautop’);
?>
Of course credit is due to Jonathan Dingman for writing this simple little ditty, but I can say it works great! Also you should undo any edits to the formatting.php file if you want to use the above
bunch and in the list you notice this one called cosmos that doesn’t quite looks like the rest. “Hmmm, what’s this?’ you think. This looks like a bunch of images stacked on top of each other. Could it be? And yes, it is, it’s a multi-image slideshow that can have as your background that rotates on a schedule that you choose. I immediately sat down and started figuring out how this thing works and in the end it was pretty simple, time consuming to setup as you have to input a ton of values into an xml file but simple. I’m not going to go into huge detail about how it works if you want to read more head over to
Being a FreeBSD user I just got used to a very nice feature that would allow me to autocomplete commands based on my history. So for example if 15 commands ago I had typed ‘cat filenames1 > filename2′ and I wanted to retype that command I could just type ‘cat’ and then press up and it would go through my history and bring up the last command I typed starting with ‘cat’ until I got back to the desired command, only bringing up those in my history starting with ‘cat’ of course.
