We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support field of custom post type Reply To: field of custom post type

#731
David
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.