Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created June 30, 2016 19:31
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 billerickson/cd77f7b226b9379f9db75c38b0f4b3d5 to your computer and use it in GitHub Desktop.
Save billerickson/cd77f7b226b9379f9db75c38b0f4b3d5 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