Wordpress子页面

时间:2012-07-11 09:59:54

标签: php css wordpress

我被要求在Wordpress中设计一个网站。粗略的设计如下所示:

enter image description here

所以我想要的是当我点击关于时,它应该展开并显示页面内容。有点像这样:

enter image description here

任何人都知道在同一个地方显示页面内容而不是在新页面或窗口中打开?

提前致谢.. :))

EDIT1

以下是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]

现在在这里,而不仅仅是我们写的内容watever,我希望它是

1)来自页面的内容,例如关于其内容来自页面关于(因为页面可以在wordpress页面中创建---&gt;新页面。所以如果我是想要编辑这个我只是去页面并编辑关于页面。)

2)只有在鼠标点击后才能显示内容..

编辑2

在我想要包含手风琴的页面中,我从页面中选择给定的选项

enter image description here

一旦我点击它。没有选项可以选择如下所示的页面:

所以任何人都对此有任何想法..?

enter image description here

1 个答案:

答案 0 :(得分:0)

有一个WordPress插件可以轻松完成此任务 - http://wordpress.org/extend/plugins/arconix-shortcodes/

https://arconixpc.fogbugz.com/default.asp?W4

上使用此插件的手风琴文档

(该插件也做得更多。)