Get value from a post ID
add_filter(‘frmpro_fields_replace_shortcodes’, ‘frm_show_post_shortcode’, 10, 4); function frm_show_post_shortcode($replace_with, $tag, $atts, $field){ if(isset($atts[‘show_post’]) and is_numeric($replace_with)){ $post = get_post($replace_with); if($post){ if(isset($post->{$atts[‘show_post’]})) $replace_with = $post->{$atts[‘show_post’]}; else $replace_with = get_post_meta($post->ID, $atts[‘show_post’], true); } } return $replace_with; }Continue reading