I use this to pull values from a custom field with several values:

<?php  $mykey_values = get_post_custom_values('services');
    foreach ( $mykey_values as $key => $value ) {
    echo "<li> $value</li>";
    } ?>

I want to sort the output according to the way I have set up the values in the key (alphabetically)

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted
$mykey_values = get_post_custom_values('services');
sort($mykey_values, SORT_STRING);
echo "<ul>\n<li>" . implode('</li><li>', $mykey_values) . "</li>\n</ul>";

Documentation for get_post_custom_values() and sort().

link|improve this answer
Thanks - problem solved – Thomas May 3 '10 at 18:45
feedback

Have you looked at this?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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