I created a Custom Post Type with custom post fields in an editor (with PHP and libraries). The input of the CPT is in the WP back office and works fine. I can then display my custom fields in the blog (with a single-mypost.php) without problem.
My WPFM input form is created in the WP back office. The data is inputed in the front office and that works fine also. I can then display the WPFM fields in the back office or send them my email without problem. I can also display them in the blog if I activate the creation of a post.
Now what I’d like to do is simply display some WPFM fields in the blog in my CPT. Something like :
echo “WPFM field:” . genesis_get_custom_field( ‘_fm_text-527a69b80e6b3’ );
I just can’t find the correct fields names…