我是一名编码初学者,但我刚刚编写了这段代码,
代码的概念是:
代码向每个用户配置文件添加一个带有按钮的表单。该按钮的标题为“Follow/Unfollow”。它为单击按钮的用户更新名为“following”的用户元(following)。然后,我们使用“following”值查询用户元,以获得订阅作者的所有用户的列表;列出那些作者的所有帖子。
<?php
if($_GET[\'follow\']){fun1();}
function fun1()
{
$fauid = get_user_by( \'slug\', get_query_var( \'author_name\' ) );
$user_id= get_current_user_id();
$key = \'following\';
$themeta = get_user_meta($user_id , $key, TRUE);
if($themeta != \'\') {
$user_id= get_current_user_id;
update_user_meta($user_id, \'following\', $fauid); }
else {
$user_id= get_current_user_id;
add_user_meta($user_id , \'following\' , $fauid , true );
update_user_meta($user_id, \'following\', $fauid);
}
}
?>
<html>
<button id="Button" name="Button" onClick=\'location.href="?follow=1"\'>Follow Me <3 <3</button>
</html>
代码是否正确?