Hello,
It is possible to return the raw data from the database by passing a false parameter to the the_sub_field function?
I tried this:
the_sub_field('the_field_name', false, false);
But I still have paragraphs.
Can you help me, please? 🙂
For info: a previous similar topic.
I’m sorry. It works now. I forgot to remove the WP functions with the plugin (CM Tooltips) that I use.
Just a note, you only need the first false
for sub fields because $post_id is not a parameter when dealing with sub fields.
the_sub_field('the_field_name', false);