Advertisement
phpface

Turn on allow unfiltered HTML in ACF save form.

Sep 3rd, 2020 (edited)
1,771
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /**
  2.  *
  3.  * Turn on allow unfiltered HTML in ACF save form.
  4.  *
  5.  * @return true
  6.  */
  7. function videotube_filter_acf_allow_unfiltered_html(){
  8.     return true;
  9. }
  10. add_filter(  'acf/allow_unfiltered_html' , 'videotube_filter_acf_allow_unfiltered_html', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement