WP替换自定义元框中的短代码


WP replace shortcode in custom meta box

我正试图找出如何在自定义Meta Box中替换FormBuilder的短代码[FormBuilder:#]。以下是我获取元数据的方法:

$meta = get_post_meta( get_the_ID() );
foreach($meta as $key => $value){
    $post_meta = get_post_meta($post->ID, $key, true);
}

我试着做_content(),但没有成功。如有任何协助,我们将不胜感激。或者如果有人知道任何教程的话。

以下是formbuilder插件的网站:formbuilder

使用此技巧

$t = get_post_meta($post->ID, "CUSTUM_META_KEY", true);
$trep = str_replace('[formbuilder:#]', '' , $t);
echo $trep;