您可以使用do_shortcode() 作用
do_shortcode(\'[your-shortcode option1=foo option2=bar]\');
或者在您的情况下:
$price = get_post_meta($post->ID, \'_price\', true);
#Dynamically generate the plugin shortcode
$new_price = do_shortcode("[plugin-shortcode price=$price]");
希望这对你有帮助!