Posts: 29
Threads: 5
Joined: Jan 2011
Hello,
Imagine I create a page "Team" to list all team members. I create one subpage per member. How can I display/list all links subpages members in the page "Team" ?
Thank you
Posts: 29
Threads: 5
Joined: Jan 2011
2011-02-01, 10:03:52
(This post was last modified: 2011-02-01, 10:08:25 by karenweber8.)
Nobody know how we can list all subpages title/links in the parent page ?
Posts: 679
Threads: 80
Joined: Nov 2009
You may try this plugin:
http://get-simple.info/forum/topic/991/c...nu-plugin/ this should provide the links but will not give a short description or anything like that.. If it doesn't work, you could manually do it or write a quick program that does what you need.
Hope that helps!
Posts: 29
Threads: 5
Joined: Jan 2011
Thank you, it's a good idea, i try
Posts: 2,094
Threads: 54
Joined: Jan 2011
This should also be possible with the I18N plugin (
http://get-simple.info/extend/plugin/i18n/69/)
Code:
<?php get_i18n_navigation(return_page_slug(),1,1); ?>
In either case (I18N or child-menu or own code) you might want to put the relevant code in a component "team" and use the DynPages plugin (
http://get-simple.info/extend/plugin/dynpages/81/) to include the component in the page - this way you can have additional information before and after the team member links, e.g.
Code:
<p>Our team members are:</p>
<p>{% team %}</p>
<p>Our next match will be on ...</p>
Posts: 29
Threads: 5
Joined: Jan 2011
Thank you guys
I've tried two plugins and both are great... Now I must choose one :-)