Wordpress按字母顺序列出子页面

时间:2011-05-09 21:31:05

标签: wordpress listings alphabetical

我有一个包含大约200个子页面的父页面,这些子页面构成了一个词典。在父页面的模板中,我想查询允许以下列表。我想显示以该字母开头的每组单词的第一个字母。如果列表中没有显示字母,则不应显示该字母。

A

阿尔伯特

阿伦

阿曼达

比尔

鲍勃

布鲁诺

C

查尔斯

依旧......

1 个答案:

答案 0 :(得分:0)

我的回答对你来说很晚,但也许有人会发现它很有用。我需要同样的东西所以我必须写这个模板:

<?php
/*
Template Name: Alphabetic
*/
?>


<?php get_header(); ?>
<div class="container">

    <div id="content" role="main">
    <h2 class="entry-title"><?php the_title(); ?></h2>                              
        <?php

        $my_wp_query = new WP_Query();
        $all_wp_pages = $my_wp_query->query(array('post_type' => 'page'));

        $children = get_page_children($post->ID, $all_wp_pages);

        $letter="";
        foreach ($children as $child)
        {
            $first_letter=substr($child->post_title,0,1);
            if($letter != $first_letter)
            {
                $alphabetic[]->post_title=$first_letter;
                $letter=$first_letter;
            }
            $alphabetic[]=$child;
        }

        ?>

        <table style="border:none;">
            <tr>

            <?php

            $col = 4; //how many columns

            for($i = 0; $i < $col; $i++) {

                echo '<td style="border:none;">';

                    $nr = (int)(sizeof($alphabetic)/4);
                    $i == $col - 1 ? $end = sizeof($alphabetic) : $end = $nr*($i+1);

                    for($j = $nr*$i; $j < $end; $j++) {
                        if(strlen($alphabetic[$j]->post_title)==1)
                            echo '<b>', $alphabetic[$j]->post_title, '</b><br />';
                        else
                            echo '<a href="'.get_permalink($alphabetic[$j]->ID).'">'.$alphabetic[$j]->post_title.'</a><br />';
                    }

                echo '</td>';

            } ?>

            </tr>
        </table>

    </div><!-- #content -->
</div><!-- #container -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>