QR Code wordpress在页面上生成

时间:2014-06-22 22:59:24

标签: php wordpress qr-code

我正在尝试使用此代码为我的每个网站添加QR。

<img alt="QR code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=150x150&amp;chld=L|4&amp;chl=&lt;?php the_permalink(); ?&gt;" width="150" height="150" />

但是当我在它生成的代码上使用QR读取时我只能得到这个

<?php the_permalink(); ?>  

在屏幕上

有人怎么能帮忙?

1 个答案:

答案 0 :(得分:2)

PHP自编码以来无法处理代码。

尝试

<img alt="QR code" src="http://chart.apis.google.com/chart?cht=qr&amp;chs=150x150&amp;chld=L|4&amp;chl=<?php echo urlencode(get_permalink()); ?>" width="150" height="150" />