基本上,我的Wordpress设置中的每个用户都在其个人资料中插入了一个spotify用户链接。
我需要在个人资料中显示关注按钮(当然是前端)。
Spotify有这个iframe插入关注按钮+关注者:
<iframe src="https://open.spotify.com/follow/1/?uri=spotify:artist:40Ojab0UtVQFjA76qXr8Ot?si=yL4xVXNtQSau6bHS5ACU7g&size=detail&theme=light" width="300" height="56" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowtransparency="true"></iframe>
现在,这里的变量将是&#34; 40Ojab0UtVQFjA76qXr8Ot?si = yL4xVXNtQSau6bHS5ACU7g&#34;这将是用户在其个人资料中插入的艺术家/用户ID(后端)。
怎么能自动实现? iframe是否为每个用户更改此变量(艺术家ID),从用户个人资料中的字段中获取? 提前致谢
答案 0 :(得分:0)
我知道您可以在iframe中获取要更改的字符串。
<iframe src="https://open.spotify.com/follow/1/?uri=spotify:artist:".<?php echo $userId?>."&size=detail&theme=light" width="300" height="56" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowtransparency="true"></iframe>
如果您没有保存值的$userID
变量,则需要从数据库中获取该变量。
$stringQuery = "here goes your query for getting the value limit 1";
$row = $wpdb -> get_results($stringQuery);
$userId -> $row -> Column;
然后显示你的iframe