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 Geodirectory Listings Reply To: Geodirectory Listings

#19116
Gary
Participant

Thanks Tom.

I struggled as I was able to call the custom field but couldn’t get the format. However, it turned out that I could echo call the shortcode and it now works perfectly.

add_action( 'wpsp_after_title', function() {
    $meta = get_post_meta( get_the_ID(), 'geodir_business_hours', true );

    if ( $meta ) {
        echo do_shortcode( '[gd_post_meta key="business_hours" show="value"]' );
    }
} );