假设我有顶级(无父)页面Fruit, Animals, Cars.
比如说,Fruit 已选中我想显示个人链接fruit 以下页面。我想把这些fruits (或animals, 或cars) 分成几组,每组水果之间留有一个空间。。有点像这样
+---------------+-----------+--------+
| Fruit | Animals | Cars |
+---------------+-----------+--------+
| Apple | | |
| Kiwi | | |
| Watermelon | | |
+---------------+-----------+--------+
| Banana | | |
| Lemon | | |
+---------------+-----------+--------+
| Strawberry | | |
| Raspberry | | |
+---------------+-----------+--------+
你可以看到,在这种情况下,我粗略地划分了
fruit 按颜色,在中间放置一个空格。对于
cars 或
animals 这可能是另一个标准。此条件不必在任何地方显式命名。所以我想知道如何输出这个列表,对于在后端输入页面的人来说,这种方式几乎不需要什么技术能力。
目前,我这样做是为了输出子页面:
if( $post->post_parent )
$children = wp_list_pages(\'depth=1&title_li=&child_of=\'.$post->post_parent.\'&echo=0\');
else
$children = wp_list_pages(\'depth=1&title_li=&child_of=\'.$post->ID.\'&echo=0\');
echo $children;
但我看不到使用wp\\U list\\u页面将输出限制为类别或类似内容的方法。我能看到的最近的选项是“作者”选项,但作为不同的用户登录以在菜单中创建不同的块没有多大意义。。。