Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active June 30, 2016 19:30
Show Gist options
  • Save billerickson/7359f7394d4c941803b9 to your computer and use it in GitHub Desktop.
Save billerickson/7359f7394d4c941803b9 to your computer and use it in GitHub Desktop.
<?php
/**
* Duplicate 'the_content' filters
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/duplicate-the_content-filters/
*/
global $wp_embed;
add_filter( 'ea_the_content', array( $wp_embed, 'run_shortcode' ), 8 );
add_filter( 'ea_the_content', array( $wp_embed, 'autoembed' ), 8 );
add_filter( 'ea_the_content', 'wptexturize' );
add_filter( 'ea_the_content', 'convert_chars' );
add_filter( 'ea_the_content', 'wpautop' );
add_filter( 'ea_the_content', 'shortcode_unautop' );
add_filter( 'ea_the_content', 'do_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment