• Hi, can anybody tell me how to sort category’s by letter, I have created lyric site and now I wish when somebody click on letter A to show him only category’s with letter A.

    Thank you

Viewing 1 replies (of 1 total)
  • Found this example that I didn’t test;

    list categories like
    $categories = get_terms('category', 'name__like=a%');
    //$categories = get_terms('category', 'name__like=A%');
    if ($categories) {
    	foreach($categories as $category) {
    		echo '<p><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></p> ';
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Category by letter’ is closed to new replies.