2016-04-22 148 views
0
<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]'); ?> 

嵌入PHP簡碼我需要$f需要替換<img src="<?php echo $newurl; ?>" alt="01-slide-Eurasia" width="120" height="90" />在WordPress模板

我試過,但得到的錯誤。請幫助

回答

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]'); ?> 
+0

非常感謝你 –