source: disable-wpautop/trunk/disable-wpautop.php @ 155535

Revision 155535, 347 bytes checked in by MtDewVirus, 2 years ago (diff)

update urls

Line 
1<?php
2/*
3Plugin Name: Disable WPAUTOP
4Plugin URI: http://wordpress.org/extend/plugins/disable-wpautop/
5Description: Disables the wpautop function for the_content and the_excerpt.
6Version: 1.0
7Author: Nick Momrik
8Author URI: http://nickmomrik.com/
9*/
10remove_filter('the_content', 'wpautop');
11remove_filter('the_excerpt', 'wpautop');
12?>
Note: See TracBrowser for help on using the repository browser.