好的,所以我正在使用此Javascript QR Code生成器:https://github.com/davidshimjs/qrcodejs

开箱即用,您可以通过在页面上包含此字符串来输出字符串。

    <div id="qrcode"></div>
    <script type="text/javascript">
    new QRCode(document.getElementById("qrcode"),
    "http://example.com");
    </script>


我需要以前缀开头的URL为“ https://saucyfreds.com/point-adder/”,然后在该URL的末尾添加一个WordPress用户元值。

如何获得WordPress UserMeta值并将其添加到此url中?

最佳答案

结合使用pomaaa的示例和插件“ Insert PHP”,我可以提出这个解决方案!

    <div id="qrcode"></div>
    <script type="text/javascript">
    new QRCode(document.getElementById("qrcode"),
    "https://saucyfreds.com/point-adder/?autologin_code=[insert_php]
    echo get_user_meta(get_current_user_id(), pkg_autologin_code,
    true); [/insert_php]");
    </script>

关于javascript - javascript qr code php meta url,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43352933/

10-11 20:17