Hello. I really like this plugin and am using it extensively, but I've run into a problem. Whenever I use a textile field, I can't get the **bold**, __italic__ and links to work. Here is my code to register the field.
slt_cf_register_box(array(
'type' => 'post',
'id' => 'bartender_profile',
'title' => 'Bartender Profile',
'context' => 'above-content',
'fields' => array(
array(
'name' => 'bartender_gigs',
'label' => 'What are your other gigs and interests?',
'type' => 'textile',
'scope' => array('hooch_bartender'),
'autop' => true
))));
}
To echo the code I've tried both of these:
<?php echo get_post_meta($post->ID, '_slt_bartender_gigs', true); ?>
and
<?php echo slt_cf_field_value( 'bartender_gigs' ); ?>
Any ideas on how to get the bold, italic and links to work?
Thanks!
http://wordpress.org/extend/plugins/developers-custom-fields/