我可以 link 到 wordpress 页面并让它已经向下滚动到我想要的某个部分吗?

Can I link to a wordpress page and have it already scrolled down to some part that I want?

在我的主页上,我有一个服务部分,位于页面底部附近的某个位置。 是否可以在菜单中创建一个 link,这样可以打开主页并自动向下滚动到该服务部分?

如果您 link 一个页面并在 link 末尾放置一个 DOM id,这是可能的。

示例:

1) link

<a href="http://www.example.com/link#here">Go</a>

2) 页

<div id="head-of-the-page">blah</div>

 .... content goes here ....

<div id="here">focus gets here</div>

然后,点击后就到了