Skip to content

Instantly share code, notes, and snippets.

@enigmaticape
Last active December 12, 2015 00:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enigmaticape/4682690 to your computer and use it in GitHub Desktop.
Save enigmaticape/4682690 to your computer and use it in GitHub Desktop.
The smallest possible Wordpress Plugin. To disable smart quotes.
<?php
/*
Plugin Name: FU Smart Quotes
Plugin URI: https://gist.github.com/4682690
Description: Disable smart quotes
Version: 1.0
Author: Steve Trewick
Author URI: http://www.enigmaticape.com/blog/the-smallest-possible-wordpress-plugin/
License: Public Domain
*/
/* F*** you, smart quotes */
remove_filter('the_content', 'wptexturize');
?>
@enigmaticape
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment