您不能在do_shortcode()
打电话就像你想打一样。如果您只是想用短代码包装您的帖子元内容,那么您可以按如下所示进行操作。
$your_post_meta_variable_content = get_post_meta( $postid, principal_1, true );
echo do_shortcode(
\'[learn_more caption="ancila"]\'
. $your_post_meta_variable_content .
\'[/learn_more]\'
);