我正在使用关注按钮,以便当用户点击按钮时,它会与作者创建对象/关系。无论如何,我使用下面的表格,以便当用户点击按钮时它执行php代码,无论如何下面的代码工作,但只有当你第二次点击按钮时。第一次由于某种原因它什么都不做。谢谢,朱利安
<?php
if(isset($_POST['select']))
{
$author_id = get_the_author_meta( 'nickname' );
$user_id = get_current_user_id();
$term_ids = wp_set_object_terms( $user_id, $author_id, 'user_follow', true );
}
?>
<html>
<body>
<form action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" method="post">
<input type="submit" name="select" value="select"/>
</form>