Home › Forums › Pro Support › field of custom post type › Reply To: field of custom post type
September 9, 2016 at 12:56 am
#731
Participant
Hi Tom, the code:
[insert_php]
add_action( ‘wpsp_before_title’,’wpsp_add_custom_meta’ );
function wpsp_add_custom_meta()
{
$meta = get_post_meta( get_the_ID(), ‘ptb_module ptb_text ptb_text_1’, true );
if ( isset( $meta ) && ” !== $meta )
echo $meta;
}
[/insert_php]
with plugin insert php.