尝试启用使用用户将其个人资料的主题更改为他们喜欢的任何内容。它不能很好地工作。当一个用户更改他/她的背景时,它会影响其他用户个人资料。关于如何实现这一点的任何想法。我的代码如下所示。
<?php
global $current_user;
get_currentuserinfo();
// User Background Choice
if ($current_user->user_cutom_background= "Sports")
{
$myBg= "image.jpg";
?>
<style type="text/css">
body {
background-image: url("<?php echo $myBg;?>");
}
</style>
<?php } ?>
答案 0 :(得分:2)
您正在使用赋值运算符而不是相等运算符。
而不是 -
if ($current_user->user_cutom_background= "Sports")
做
if ($current_user->user_cutom_background == "Sports")
。
为了消除此类错误,您可以将值放在第一位 -
if ("Sports" == $current_user->user_cutom_background)
如果你这样做
if ("Sports" = $current_user->user_cutom_background)
会抛出错误