我正在尝试使用PHP显示当前页面的QR码。 the_permalink()
在我的论坛上显示为空白。
function the_qrcode( $permalink ) {
if($permalink == '') {
$permalink = 'http://eternityofgamers.com/forums';
}
echo $permalink;
}
在启用PHP的文本小部件中,我有<?php the_qrcode(the_permalink()); ?>
在主页上,$permalink
回显为http://eternityofgamers.com/archives/74http://eternityofgamers.com/forums
而不是http://eternityofgamers.com/archives/74
。
答案 0 :(得分:1)
应该在循环中使用the_permalink()。如果您想获取当前的帖子链接,请使用get_permalink。
<?php the_qrcode(get_permalink()); ?>