如何在选项树框架元框中显示短代码的功能?

How can i display the function of short-code in option tree framework meta box?

我在调用短代码最终短代码时遇到问题

echo get_post_meta($post->ID, 'itineary', true);

上面的代码将内容显示为纯文本,但我必须使用

[su_button icon="icon: bullhorn"]Button text[/su_button]

此短代码用于添加按钮,但它也以纯文本显示...

求解决办法!!!

尝试

echo do_shortcode( get_post_meta( $post->ID, 'itineary', true ) );