Home › Forums › General Issues › Very annoyed with inserts for WYSIWYG. I've tried other solutions › Reply To: Very annoyed with inserts for WYSIWYG. I've tried other solutions
get_field() gets the value of the field. the_field() outputs the content of the field. Both functions format the value the same way, basically the same way that WP formats the value of the main content editor. For a WYSIWYG field, if you want to get the value without formatting the you need go do get_field('my_field', false, false)
. The second argument is the post ID, set to false it means the current post. The 3rd argument tells ACF not to format the value.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.