A到Z的类别列表

时间:2010-11-22 21:25:19

标签: wordpress

尝试在WP页面上创建类别的A到Z索引列表。我使用此代码为标签实现了这一目标:

            <ul class="index-p clearfix">
            <h3>A</h3>
                <?php
                $tags = get_tags( array('name__like' => "a", 'order' => 'ASC') );
                foreach ( (array) $tags as $tag ) { ?>
                <li>
                    <a href="<?php echo get_tag_link( $tag->term_id ) ?>">
                        <img src="<?php echo get_option('home'); ?>/wp-content/thumbs/<?php echo $tag->slug; ?>-small.jpg" alt="<?php echo $tag->name ?>" />
                        <span class="info">
                            <span class="name"><?php echo $tag->name ?></span>
                            <span class="number"><?php echo $tag->count ?> Clips</span>
                        </span>
                    </a>
                </li>
                <?php } ?>
            </ul>

上面的代码将列出以字母A开头的所有标签。是否有一段类似于上面的代码,以实现类别的相同内容。

由于

2 个答案:

答案 0 :(得分:2)

你试过wp_list_categories();吗?我不确定你是否需要更好的控制,但如果你这样做,WP也有get_categories();

答案 1 :(得分:0)

正确的功能是get_terms http://codex.wordpress.org/Function_Reference/get_terms

$categories = get_terms( array( 'category'), array('name__like' => "a", 'order' => 'ASC') );