简而言之,我正在尝试有效地将 PHP 函数插入到短代码中,但没有运气。
简码:
[res_map address=""]
功能:
<?php the_field('address'); ?>
到目前为止我所拥有的:
<?php echo do_shortcode('[res_map address="' . the_field("address") . '"]'); ?>
任何有关如何正确执行此操作的帮助将不胜感激。
你可以试试这样的
$ret = the_field("address");
echo do_shortcode('[res_map address = "'. $ret .'"]');
在这种情况下,您的函数必须返回一个字符串,即
function the_field($arg)
{
// ...
return 'something';
}
因为do_shortcode函数期望string
它是参数并且它是必需的。例如,它应该是这样的
echo do_shortcode('[res_map address = "something"]');