在 wordpress 模板中嵌入 PHP 简码

Embedding PHP shortcode in wordpress Template

<img src="<?php echo $newurl; ?>" alt="01-slide-Eurasia" width="120" height="90" />


<?php echo do_shortcode( '[simple_tooltip content="Click Now to Download"]' . $f . '[/simple_tooltip]' ); ?>

我需要$f需要替换成<img src="<?php echo $newurl; ?>" alt="01-slide-Eurasia" width="120" height="90" />

我试过了,但出现错误。请帮忙

php 变量不能回显,而必须在字符串中串联。

<?php echo do_shortcode( '[simple_tooltip content="Click Now to Download"]<img src="'.$newurl.'" alt="01-slide-Eurasia" width="120" height="90" />[/simple_tooltip]' ); ?>