Auction Info Shortcode
// Add Shortcode function display_auction_info() { $posttags = get_the_terms( $post->ID, 'show'); if ($posttags) { foreach($posttags as $tag) { $custom_field = get_field('twitter_handle', $tag ); echo $custom_field; } } } add_shortcode( 'display-auction-info', 'display_auction_info' );