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