我正在尝试使用 PHP 显示当前页面的二维码。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
.