Skip to content

Instantly share code, notes, and snippets.

@indrekots
Last active December 27, 2015 02:19
Show Gist options
  • Save indrekots/7250913 to your computer and use it in GitHub Desktop.
Save indrekots/7250913 to your computer and use it in GitHub Desktop.
A section from the default-filters.php file in Wordpress
<?php
// Display filters
add_filter( 'the_title', 'wptexturize' );
add_filter( 'the_title', 'convert_chars' );
add_filter( 'the_title', 'trim' );
add_filter( 'the_content', 'wptexturize' );
add_filter( 'the_content', 'convert_smilies' );
add_filter( 'the_content', 'convert_chars' );
//add_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'shortcode_unautop' );
add_filter( 'the_content', 'prepend_attachment' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment