我想在WordPress中使用短代码在任何页面上回显PHP变量值。
我创建了:
function custom_shortcode() {
echo $unique;
}
add_shortcode( 'test', 'custom_shortcode' );
当我在任何页面上放置短代码[test]
时,它什么也不返回。
$unique
变量用于在URL中显示登录用户的用户名。例如:example.com/?username
前端的预期输出需要为:example.com/?username