Guest User

Untitled

a guest
Nov 17th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function my_acf_format_value($value, $post_id, $field) {
  2. // Check if it's the specific field you want to modify
  3. if ($field['name'] == 'your_field_name') {
  4. // Disable HTML filtering
  5. return $value;
  6. }
  7.  
  8. // If it's not the specific field, return the original value
  9. return $value;
  10. }
  11.  
  12. add_filter('acf/format_value', 'my_acf_format_value', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment