Home › Forums › ACF PRO › Content of WYSIWYG fields is not shown anymore › Reply To: Content of WYSIWYG fields is not shown anymore
Hi @rpk
It sounds like the issue is coming from the format_value filter. This filter is used to allow each field type (and functions.php) to modify the value based on the field.
This explains why the field value is returned for non WYSIWYG fields.
Can you confirm that you have no format_value filter code in your functions.php file which could be clearing the $value?
Next, try adding 2 false parameters to your code like so:
$test = get_field( 'pro_description', false, false );
Does this allowed the WYSIWYG field to return it’s 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.