在wordpress模板中嵌入PHP短代码

时间:2016-04-22 20:47:02

标签: wordpress shortcode

<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" />

我试过但是,得到了错误。请帮忙

1 个答案:

答案 0 :(得分:0)

不能回显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]' ); ?>