mateusneves
5/29/2017 - 12:59 PM

Duplicando o filtro the_content para evitar conflitos com plugins que utilizam o mesmo filtro

Duplicando o filtro the_content para evitar conflitos com plugins que utilizam o mesmo filtro

<?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'       );