Scrolling on reply url

时间:2021-07-12 作者:Mike

我已经为我的论坛安装了BBPress和anonymus订阅插件。问题是,如果用户收到一封电子邮件,通知他收到了对其主题/答案的回复,在他按下该电子邮件中的按钮继续他的问题/答案后,页面会滚动到文章的结尾,而不是开始。有人能帮我

$reply_url     = bbp_get_reply_url( $reply_id );
<a style="padding:10px; text-decoration:none; background:#66BB6A; font-family: Open Sans; font-style: normal; font-weight: bold; font-size: 12px; line-height: 20px; border-radius: 73px; color:white; letter-spacing: 1px; width:190px; display:block; text-align:center; " href="\'.$reply_url.\'">Read answer<a/>
这是代码的一部分。链接将是:www.mysite.com/forum/questionName/#post-postNumberenter image description here

1 个回复
SO网友:Buttered_Toast

您可以删除#postNumber 从url中分离,可以执行以下操作

$reply_url = explode(\'#\', bbp_get_reply_url($reply_id))[0];