Wordpress小部件问题

时间:2012-07-17 03:06:15

标签: php wordpress qr-code

我正在尝试使用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

1 个答案:

答案 0 :(得分:1)

应该在循环中使用the_permalink()。如果您想获取当前的帖子链接,请使用get_permalink

<?php the_qrcode(get_permalink()); ?>