Support

Account

Home Forums General Issues Smart quotes Reply To: Smart quotes

  • If you want a more targeted approach, run the field through wptexturize (http://codex.wordpress.org/Function_Reference/wptexturize).

    echo wptexturize(get_field('my_field'));

    Although the_content filter works, in addition to wptexturize it runs your content through a bunch of other transformations that might be undesirable, wrapping it in paragraph tags for instance.