我被要求在 Wordpress 中设计一个网站。只是一个粗略的设计如下所示:
所以我想要的是当我点击 关于 它应该展开并显示页面内容。有点像这样:
有人对在同一位置显示页面内容而不是在新页面或窗口中打开有任何想法吗?
提前致谢.. :)
编辑1
下面是page.php的php代码
<?php get_header(); ?>
<div id="content" class="page">
<div id="box">
<h3><?php the_title(); ?></h3>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<?php the_content(); ?><br /><div style="clear:both;"></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
我希望菜单如图所示显示。因此,根据Arconix Shortcode Collection的教程,它说我必须编写代码,例如
[accordions]
[accordion title="About"]
About Content here
[/accordion]
[accordion title="Results"]
Results Content here
[/accordion]
[accordion title="People" last="last"]
People Content here
[/accordion]
[/accordions]
现在在这里,而不仅仅是我们写的内容,我希望它是
1)来自页面的内容,例如关于它的页面内容(因为页面可以在wordpress页面中创建--->新页面。所以如果我想编辑这个我只是去页面并编辑关于页面)。
2)只有在鼠标点击后才会显示内容。
编辑 2
在我想包含手风琴的页面中,我从页面中选择给定的选项
一旦我点击它。没有选择页面的选项,如下所示:
所以有人对此有任何想法..?