vote up 0 vote down star

ok so this is what i mean by this. on a the category archive page it will list all the category so that it look like this:

"a"

  • ---apple
  • ---answer

"b"

  • ---ball
  • ---big

and so on. and this is wordpress i am talking about. thank you very much

flag

Three questions: Are you using the 'parent' category ability of WordPress, and if so, do you want that relationship to be ignored in order to list the category in the correct alpha location? When you display a category, such as 'apple', should that text be a link to the posts in that category? You mention category archive, so are you looking to list each post related to that category? – Michael May 4 at 3:16

1 Answer

vote up 1 vote down check

You can retrieve a list of your categories using the get_categories() function. You can pass an array of parameters to the function that will allow you to specify what sort order you would like used, among other things.

It should look something like this:

$defaults = array('type' => 'post',
    'child_of' => 0,
    'orderby' => 'name',
    'order' => 'ASC',
    'hide_empty' => true,
    'include_last_update_time' => false,
    'hierarchical' => 1, 
    'exclude' => ,
    'include' => ,
    'number' => ,
    'pad_counts' => false
);

$categories = get_categories($defaults);

For more information on parameter values and using the returned categories, check out this page in the Wordpress codex.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.