如何在wordpress中添加子页面到页面?

时间:2016-06-27 07:07:37

标签: html wordpress

我想添加几个新的标签/子页面/子内容(我不知道它叫什么),如下所示: http://www.rle.mit.edu/gg/publications/#1456759349089-640f1dcb-938f

【出版物】是【2016】,【2015】,...

的页面

当我点击2016年时,相关内容会显示出来。 我怎样才能做到这一点? 感谢。

2 个答案:

答案 0 :(得分:1)

通过查看你给出的演示,你谈论的是手风琴。试试这个插件List of new features in C++17

答案 1 :(得分:1)

如果你想做到这一点,请将其复制到你的文件中:

<script>
function pshow(id){
document.getElementById(id).style.display="block !important";
}
function phide(id){
 document.getElementById(id).style.display="none !important";
}
</script>
<a href="javascript:pshow('p1')">Show p1</a>
<a href="javascript:phide('p1')">Hide p1</a>
<p class="hide" id="p1">This is p1</p>

在设计&gt;下添加此项自定义css

.hide{display:none !important;}