Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function acf_apply_content_filter_for_api($value, $post_id, $field){
  2. return str_replace( ']]>', ']]>', apply_filters( 'the_content', $value) );
  3. }
  4. function add_content_filter_ACF(){
  5. if(!is_admin()){
  6. remove_all_filters('acf/format_value/type=wysiwyg');
  7. add_filter('acf/format_value/type=wysiwyg', 'acf_apply_content_filter_for_api', 10, 3);
  8. }
  9. }
  10. add_action('init', 'add_content_filter_ACF');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement