I was able to get one of the Simple Fields to show up. I went into the database under wp_postmeta and found the Simple Fields variable.
_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0
I then added that to my Front End Editor line of code like this
<?php editable_post_meta( get_the_ID(), '_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0', 'textarea'); ?>
I put that in my single.php theme file right under content like this
<?php the_content(); ?>
<div>
<?php editable_post_meta( get_the_ID(), '_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0', 'textarea'); ?>
</div>
that didn’t fully work so I added the escape code from scribu’s link like this
<?php the_content(); ?>
<?php function my_custom_field_escaping( $content, $post_id, $key ) {
if ( '_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0' == $key )
return stripslashes( $content );
return $content;
}
add_filter( 'post_meta', 'my_custom_field_escaping', 10, 3 ); ?>
<div>
<?php editable_post_meta( get_the_ID(), '_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0', 'textarea'); ?>
</div>
Now it works great.
…but
How do I escape more that one Simple Fields variable?
_simple_fields_fieldGroupID_1_fieldID_1_numInSet_0
_simple_fields_fieldGroupID_1_fieldID_2_numInSet_0
_simple_fields_fieldGroupID_1_fieldID_3_numInSet_0
_simple_fields_fieldGroupID_1_fieldID_4_numInSet_0
_simple_fields_fieldGroupID_1_fieldID_5_numInSet_0