1
我想在WordPress中使用shortcode在任何頁面上回顯PHP變量值。在WordPress中使用shortcode回聲PHP變量
我已經創建:
function custom_shortcode() {
echo $unique;
}
add_shortcode('test', 'custom_shortcode');
當我把簡碼[test]
任何網頁上,它沒有返回。
$unique
變量是在URL中顯示登錄用戶的用戶名。例如:example.com/?username
在前端的預期輸出必須是:example.com/?username
感謝@aidinMC – Chandrakant