<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" />
我试过但是,得到了错误。请帮忙
答案 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]' ); ?>