侧边栏和内容根据wordpress中的侧边栏链接滑动

时间:2014-07-21 06:11:34

标签: wordpress sidebar

我只想获得一个页面,就像在wordpress中的这个链接一样。 http://getbootstrap.com/css/#top。当我们点击侧边栏中的链接时,内容会向下滑动到各自的内容。帮帮我。提前致谢

2 个答案:

答案 0 :(得分:1)

试试这个: -

在html

中的内容或div上方添加以下行
<h1 id="code">Title goes here</h1>

然后,在侧边栏链接中,在网址

后添加#code

答案 1 :(得分:1)

Try this menu link like href="#idname" and add the id in content like

在内容部分

中添加此代码
<div id="test">
// Paste everything here
</div>

在侧栏中添加此代码

<a href="#test">Test</a>

Wordpress菜单提供了添加href部分。