acf_the_content
Usage
add_filter( 'acf_the_content', 'wp_kama_acf_the_content_filter' );
/**
* Function for `acf_the_content` filter-hook.
*
* @param $value
*
* @return
*/
function wp_kama_acf_the_content_filter( $value ){
// filter...
return $value;
}
- $value
- -
Where the hook is called
acf_the_content
acf/includes/fields/class-acf-field-wysiwyg.php 410
$value = apply_filters( 'acf_the_content', $value );
Where the hook is used in Advanced Custom Fields PRO
acf/includes/fields/class-acf-field-wysiwyg.php 407
add_filter( 'acf_the_content', 'acf_esc_html', 1 );
acf/includes/fields/class-acf-field-wysiwyg.php 413
remove_filter( 'acf_the_content', 'acf_esc_html', 1 );
acf/includes/fields/class-acf-field-wysiwyg.php 71
add_filter( 'acf_the_content', 'capital_P_dangit', 11 );
acf/includes/fields/class-acf-field-wysiwyg.php 73
add_filter( 'acf_the_content', 'wptexturize' );
acf/includes/fields/class-acf-field-wysiwyg.php 74
add_filter( 'acf_the_content', 'convert_smilies', 20 );
acf/includes/fields/class-acf-field-wysiwyg.php 75
add_filter( 'acf_the_content', 'wpautop' );
acf/includes/fields/class-acf-field-wysiwyg.php 76
add_filter( 'acf_the_content', 'shortcode_unautop' );
acf/includes/fields/class-acf-field-wysiwyg.php 78
add_filter( 'acf_the_content', $wp_filter_content_tags );
acf/includes/fields/class-acf-field-wysiwyg.php 79
add_filter( 'acf_the_content', 'do_shortcode', 11 );
acf/includes/fields/class-acf-field-wysiwyg.php 83
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'run_shortcode' ), 8 );
acf/includes/fields/class-acf-field-wysiwyg.php 84
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );